diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-22 15:55:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-22 15:55:33 +0000 |
commit | 3387de7236ed1fe2330bde10cfe2b85728a311ad (patch) | |
tree | 24a183f92fe64a8e747114054f3cc38a663d548e /usr.bin/tmux/tmux.h | |
parent | 532779f9e9776926ab7dfc9dde8afa3461366518 (diff) |
tty_cmd_raw is only used once, for raw UTF-8 output, so rename it to
tty_cmd_utf8character and eliminate the size argument.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 42a0317f037..2eeb41f9f84 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.44 2009/07/21 19:54:22 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.45 2009/07/22 15:55:32 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -288,7 +288,7 @@ enum tty_cmd { TTY_INSERTCHARACTER, TTY_INSERTLINE, TTY_LINEFEED, - TTY_RAW, + TTY_UTF8CHARACTER, TTY_REVERSEINDEX, }; |