diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-02-03 22:01:18 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-02-03 22:01:18 +0000 |
commit | e1c283325ecf6496f2107efc5c8d32257017558c (patch) | |
tree | f7bf71b1bd97b81f82c611aae5567310a9d28327 /tmux.h | |
parent | 6c333cc4864c11283704b069fa6477876fd48f70 (diff) | |
parent | 5e6a8177e55a8e30e0cd67c7ee3039aa22ff1c0e (diff) | |
download | rtmux-e1c283325ecf6496f2107efc5c8d32257017558c.tar.gz rtmux-e1c283325ecf6496f2107efc5c8d32257017558c.tar.bz2 rtmux-e1c283325ecf6496f2107efc5c8d32257017558c.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -547,7 +547,6 @@ struct grid_cell { int fg; int bg; struct utf8_data data; - }; struct grid_cell_entry { u_char flags; @@ -938,6 +937,8 @@ struct session { struct winlink_stack lastw; struct winlinks windows; + int statusat; + struct hooks *hooks; struct options *options; @@ -1866,6 +1867,7 @@ void server_unzoom_window(struct window *); /* status.c */ void status_timer_start(struct client *); void status_timer_start_all(void); +void status_update_saved(struct session *s); int status_at_line(struct client *); struct window *status_get_window_at(struct client *, u_int); int status_redraw(struct client *); |