summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/xterm.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/xterm.c b/src/xterm.c
index e52f19a8e3f..6d658cf2042 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -14342,9 +14342,13 @@ handle_one_xevent (struct x_display_info *dpyinfo,
{
f = any;
if (f)
- _XEditResCheckMessages (f->output_data.x->widget,
- NULL, (XEvent *) event, NULL);
- goto done;
+ {
+ _XEditResCheckMessages (f->output_data.x->widget,
+ NULL, (XEvent *) event, NULL);
+ goto done;
+ }
+
+ goto OTHER;
}
#endif /* X_TOOLKIT_EDITRES */