diff options
author | Thomas Adam <thomas@xteddy.org> | 2015-08-28 14:01:11 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2015-08-28 14:01:11 +0100 |
commit | 84eabb2658f9ad1bec81344aa425f66a903c931d (patch) | |
tree | 98c743d4888d1414884ec418d1eaf354c9a07213 /tmux.h | |
parent | 31c027a37a18d11acdc5a1bc96c871dd0139744d (diff) | |
parent | 675def039652e69d8fd5f229eff2128116e1d328 (diff) | |
download | rtmux-84eabb2658f9ad1bec81344aa425f66a903c931d.tar.gz rtmux-84eabb2658f9ad1bec81344aa425f66a903c931d.tar.bz2 rtmux-84eabb2658f9ad1bec81344aa425f66a903c931d.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -781,7 +781,6 @@ struct window_mode { void (*resize)(struct window_pane *, u_int, u_int); void (*key)(struct window_pane *, struct client *, struct session *, int, struct mouse_event *); - void (*timer)(struct window_pane *); }; /* Structures for choose mode. */ @@ -1211,7 +1210,7 @@ struct client { struct event repeat_timer; - struct timeval status_timer; + struct event status_timer; struct screen status; #define CLIENT_TERMINAL 0x1 @@ -1453,7 +1452,6 @@ void cfg_show_causes(struct session *); /* format.c */ struct format_tree; -void format_clean(void); struct format_tree *format_create(void); struct format_tree *format_create_status(int); void format_free(struct format_tree *); @@ -1898,6 +1896,8 @@ int server_set_stdin_callback(struct client *, void (*)(struct client *, void server_unzoom_window(struct window *); /* status.c */ +void status_timer_start(struct client *); +void status_timer_start_all(void); int status_at_line(struct client *); struct window *status_get_window_at(struct client *, u_int); int status_redraw(struct client *); |