From 98a478ceb3d4b8f6d1951b0b12891e54abee96d0 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 20 Aug 2018 20:41:58 +0000 Subject: Move offset of window list into status struct. --- tmux.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 9884f60a..3a45dd08 100644 --- a/tmux.h +++ b/tmux.h @@ -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. */ -- cgit