From b1264a7416789dad8fad1b4b00a63f99b1ca25e5 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 4 Nov 2009 23:29:42 +0000 Subject: Use timeout events for the identify and message timers. --- tmux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 4603af4d..d33cb634 100644 --- a/tmux.h +++ b/tmux.h @@ -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; -- cgit