=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.817 retrieving revision 1.818 diff -u -r1.817 -r1.818 --- src/usr.bin/tmux/tmux.h 2018/02/04 10:10:39 1.817 +++ src/usr.bin/tmux/tmux.h 2018/02/05 08:21:54 1.818 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.817 2018/02/04 10:10:39 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.818 2018/02/05 08:21:54 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1312,6 +1312,13 @@ enum cmd_retval (*exec)(struct cmd *, struct cmdq_item *); }; +/* Status line. */ +struct status_line { + struct event timer; + struct screen status; + struct screen *old_status; +}; + /* Client connection. */ typedef int (*prompt_input_cb)(struct client *, void *, const char *, int); typedef void (*prompt_free_cb)(void *); @@ -1354,10 +1361,7 @@ struct event click_timer; u_int click_button; - struct event status_timer; - struct screen status; - - struct screen *old_status; + struct status_line status; #define CLIENT_TERMINAL 0x1 #define CLIENT_LOGIN 0x2