Sync OpenBSD patchset 440:

Redraw checks have to after handling input or pane redraw flags set by key
presses will not be acted on.
This commit is contained in:
Tiago Cunha 2009-10-23 17:53:16 +00:00
parent e05fe0ba05
commit 5820efa513

View File

@ -1,4 +1,4 @@
/* $Id: server-client.c,v 1.3 2009-10-23 17:51:57 tcunha Exp $ */ /* $Id: server-client.c,v 1.4 2009-10-23 17:53:16 tcunha Exp $ */
/* /*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@ -196,10 +196,10 @@ server_client_loop(void)
if (c == NULL || c->session == NULL) if (c == NULL || c->session == NULL)
continue; continue;
server_client_handle_data(c);
server_client_check_timers(c); server_client_check_timers(c);
server_client_check_redraw(c); server_client_check_redraw(c);
server_client_handle_data(c);
} }
/* /*