diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-11-04 23:54:57 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-11-04 23:54:57 +0000 |
commit | 44d6a2c435ab68df25ed7b14473e6f69870e8a9a (patch) | |
tree | a89bce807ac501ffc4efdc7ef1d63dadde7212c3 /tmux.h | |
parent | 946ed972734f5c95f67e30aff99a58de0179b2d5 (diff) | |
download | rtmux-44d6a2c435ab68df25ed7b14473e6f69870e8a9a.tar.gz rtmux-44d6a2c435ab68df25ed7b14473e6f69870e8a9a.tar.bz2 rtmux-44d6a2c435ab68df25ed7b14473e6f69870e8a9a.zip |
Change window name change to use a timer event rather than a gettimeofday()
check every loop.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -810,7 +810,7 @@ TAILQ_HEAD(window_panes, window_pane); /* Window structure. */ struct window { char *name; - struct timeval name_timer; + struct event name_timer; struct window_pane *active; struct window_panes panes; @@ -1851,7 +1851,7 @@ void window_choose_ready(struct window_pane *, u_int, void (*)(void *, int), void (*)(void *), void *); /* names.c */ -void set_window_names(void); +void queue_window_name(struct window *); char *default_window_name(struct window *); /* session.c */ |