diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-01 17:37:41 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-01 17:37:41 +0000 |
commit | 843779a3e0024648cc009e86f5bf5d85929e1a1e (patch) | |
tree | 6d07bee6ec0e38c09f50ae281e443b1d427ddd05 /tmux.h | |
parent | bfccbc67d193f91e6825e491f4cb6b466dcf255a (diff) | |
download | rtmux-843779a3e0024648cc009e86f5bf5d85929e1a1e.tar.gz rtmux-843779a3e0024648cc009e86f5bf5d85929e1a1e.tar.bz2 rtmux-843779a3e0024648cc009e86f5bf5d85929e1a1e.zip |
Restore window title handling.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.31 2007-10-01 14:53:29 nicm Exp $ */ +/* $Id: tmux.h,v 1.32 2007-10-01 17:37:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -430,6 +430,10 @@ struct input_ctx { struct buffer *b; struct screen *s; + u_char title_buf[MAXTITLELEN]; + size_t title_len; + u_int title_type; + void *(*state)(u_char, enum input_class, struct input_ctx *); u_char private; |