diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-10-09 21:22:16 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-10-09 21:22:16 +0000 |
commit | 185f7297e8df1399094b7e3d1314f1af1e94e633 (patch) | |
tree | 55326e854032c0a967701d2ad7be6677f8cc9e71 /tmux.h | |
parent | 23e7da1ccb63d2cb9bea945060c6f5158e73d967 (diff) | |
download | rtmux-185f7297e8df1399094b7e3d1314f1af1e94e633.tar.gz rtmux-185f7297e8df1399094b7e3d1314f1af1e94e633.tar.bz2 rtmux-185f7297e8df1399094b7e3d1314f1af1e94e633.zip |
Better OSC support for title setting, and support APC as well.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.191 2008-09-26 06:45:28 nicm Exp $ */ +/* $Id: tmux.h,v 1.192 2008-10-09 21:22:16 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -524,9 +524,9 @@ struct input_ctx { u_char *string_buf; size_t string_len; int string_type; -#define STRING_TITLE 0 -#define STRING_NAME 1 -#define STRING_IGNORE 2 +#define STRING_SYSTEM 0 +#define STRING_APPLICATION 1 +#define STRING_NAME 2 u_char utf8_buf[4]; u_int utf8_len; |