mirror of
https://github.com/tmux/tmux.git
synced 2025-09-04 23:56:58 +00:00
The CLIENT_HOLD hack can go bye-bye.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
/* $Id: server-msg.c,v 1.34 2007-11-21 13:11:41 nicm Exp $ */
|
||||
/* $Id: server-msg.c,v 1.35 2007-11-21 20:04:37 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -243,11 +243,6 @@ server_msg_fn_keys(struct hdr *hdr, struct client *c)
|
||||
if (hdr->size & 0x1)
|
||||
fatalx("bad MSG_KEYS size");
|
||||
|
||||
if (c->flags & CLIENT_HOLD) {
|
||||
server_redraw_client(c);
|
||||
c->flags &= ~CLIENT_HOLD;
|
||||
}
|
||||
|
||||
size = hdr->size;
|
||||
while (size != 0) {
|
||||
key = (int16_t) input_extract16(c->in);
|
||||
|
Reference in New Issue
Block a user