plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 8e06ea1b42726a61e3fcff3ccb6cefe29cbfc387
parent d1e25ee94ec984b7557a4d4a178faee0b03f18ee
Author: rsc <devnull@localhost>
Date:   Thu, 15 Sep 2005 17:18:00 +0000

In eread, ignore unexpected events instead of returning early.

Diffstat:
Msrc/libdraw/x11-event.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libdraw/x11-event.c b/src/libdraw/x11-event.c @@ -90,7 +90,7 @@ again: goto again; return Ekeyboard; default: - return 0; + goto again; } }