diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-20 06:36:01 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-20 06:36:01 +0000 |
commit | 17fde823a88897e375735065a05fa1f8943df0bc (patch) | |
tree | 8fff3d30d056e15fda1cd38d196e1e267a941ded /tmux.h | |
parent | 89ea06e0a17dc5ceefc339a1571065e66523a9a1 (diff) | |
download | rtmux-17fde823a88897e375735065a05fa1f8943df0bc.tar.gz rtmux-17fde823a88897e375735065a05fa1f8943df0bc.tar.bz2 rtmux-17fde823a88897e375735065a05fa1f8943df0bc.zip |
Freeze output when showing display line, fixes problems when no status line.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.155 2008-06-19 23:07:11 nicm Exp $ */ +/* $Id: tmux.h,v 1.156 2008-06-20 06:36:01 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -652,6 +652,7 @@ struct tty { u_char acs[UCHAR_MAX + 1]; #define TTY_NOCURSOR 0x1 +#define TTY_FREEZE 0x2 int flags; size_t ksize; /* maximum key size */ |