From: Po Lu Date: Sat, 30 Apr 2022 07:57:11 +0000 (+0800) Subject: Process editres events not for frames correctly X-Git-Tag: emacs-29.0.90~1931^2~200 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=08c6e699f662b40e92ae7b76745236d1c092757a;p=emacs.git Process editres events not for frames correctly * src/xterm.c (handle_one_xevent): Dispatch Editres events to interested widgets. --- 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 */