diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-07-23 12:57:45 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-07-23 12:57:45 +0000 |
commit | c84145751aa0090ce7a2a80149ef1041b5759605 (patch) | |
tree | 21750918c4dc02dfdc125f2dd284830d80e39340 /tmux.h | |
parent | b72f9bea434f4ed4d8049ca7ec0d041d03bfecd6 (diff) | |
download | rtmux-c84145751aa0090ce7a2a80149ef1041b5759605.tar.gz rtmux-c84145751aa0090ce7a2a80149ef1041b5759605.tar.bz2 rtmux-c84145751aa0090ce7a2a80149ef1041b5759605.zip |
Sync OpenBSD patchset 164:
tty_write is relatively short and the only function left in tty-write.c so
move it into tty.c.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.384 2009-07-23 12:48:18 tcunha Exp $ */ +/* $Id: tmux.h,v 1.385 2009-07-23 12:57:45 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -790,7 +790,6 @@ struct tty_ctx { u_int orupper; u_int orlower; }; -typedef void tty_cmd_func(struct tty *, struct tty_ctx *); /* Client connection. */ struct client { @@ -1076,9 +1075,6 @@ void tty_keys_init(struct tty *); void tty_keys_free(struct tty *); int tty_keys_next(struct tty *, int *, u_char *); -/* tty-write.c */ -void tty_write(tty_cmd_func *, struct tty_ctx *); - /* options-cmd.c */ void set_option_string(struct cmd_ctx *, struct options *, const struct set_option_entry *, char *); |