diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-11-04 23:29:42 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-11-04 23:29:42 +0000 |
commit | b1264a7416789dad8fad1b4b00a63f99b1ca25e5 (patch) | |
tree | df5e1caa4db6713325be59dc06ff33da4008a6a2 /tmux.h | |
parent | b3c4956efeb62bae3c9ac64eab2371bb6384623a (diff) | |
download | rtmux-b1264a7416789dad8fad1b4b00a63f99b1ca25e5.tar.gz rtmux-b1264a7416789dad8fad1b4b00a63f99b1ca25e5.tar.bz2 rtmux-b1264a7416789dad8fad1b4b00a63f99b1ca25e5.zip |
Use timeout events for the identify and message timers.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1074,10 +1074,10 @@ struct client { #define CLIENT_DEAD 0x200 int flags; - struct timeval identify_timer; + struct event identify_timer; char *message_string; - struct timeval message_timer; + struct event message_timer; char *prompt_string; char *prompt_buffer; |