diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-05-29 20:41:30 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-05-29 20:41:30 +0000 |
commit | 8c66aadba95962e258a8bc8f28a97ca6f09da869 (patch) | |
tree | 4798049dcf037b9c7ac0a452f7860126a6918565 /usr.bin/tmux/tmux.h | |
parent | 6d44e003a7a13ac2d07c530013c8cfe193d0d064 (diff) |
Store a copy of the old status line, will be needed soon for new choose mode.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 7316d3f6711..c80806506cf 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.772 2017/05/29 20:37:30 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.773 2017/05/29 20:41:29 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1328,6 +1328,8 @@ struct client { struct event status_timer; struct screen status; + struct screen *old_status; + #define CLIENT_TERMINAL 0x1 #define CLIENT_LOGIN 0x2 #define CLIENT_EXIT 0x4 |