diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-07-22 17:58:42 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-07-22 17:58:42 +0000 |
commit | 75a44d856e6b8bf6b1b09c57d630e99c66774214 (patch) | |
tree | 79d2c59f5cc5a6b655d804048280b7ecf3997224 /tmux.h | |
parent | 41207e4861ddce19ad19b869aca851d1e652c88d (diff) | |
download | rtmux-75a44d856e6b8bf6b1b09c57d630e99c66774214.tar.gz rtmux-75a44d856e6b8bf6b1b09c57d630e99c66774214.tar.bz2 rtmux-75a44d856e6b8bf6b1b09c57d630e99c66774214.zip |
Sync OpenBSD patchset 158:
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 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.380 2009-07-22 17:46:53 tcunha Exp $ */ +/* $Id: tmux.h,v 1.381 2009-07-22 17:58:42 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -287,7 +287,7 @@ enum tty_cmd { TTY_INSERTCHARACTER, TTY_INSERTLINE, TTY_LINEFEED, - TTY_RAW, + TTY_UTF8CHARACTER, TTY_REVERSEINDEX, }; |