diff options
author | nicm <nicm> | 2018-08-20 20:41:58 +0000 |
---|---|---|
committer | nicm <nicm> | 2018-08-20 20:41:58 +0000 |
commit | 98a478ceb3d4b8f6d1951b0b12891e54abee96d0 (patch) | |
tree | cbec672bea9efbcad0744153db330d69065676a4 /tmux.h | |
parent | 665f04695063a3e83773b7b4d1d50ce4f9fab970 (diff) | |
download | rtmux-98a478ceb3d4b8f6d1951b0b12891e54abee96d0.tar.gz rtmux-98a478ceb3d4b8f6d1951b0b12891e54abee96d0.tar.bz2 rtmux-98a478ceb3d4b8f6d1951b0b12891e54abee96d0.zip |
Move offset of window list into status struct.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1278,8 +1278,11 @@ struct cmd_entry { /* Status line. */ struct status_line { struct event timer; + struct screen status; struct screen *old_status; + + int window_list_offset; }; /* Client connection. */ |