]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix menu grabs on XI2 Motif builds
authorPo Lu <luangruo@yahoo.com>
Fri, 24 Dec 2021 03:10:09 +0000 (11:10 +0800)
committerPo Lu <luangruo@yahoo.com>
Fri, 24 Dec 2021 03:10:09 +0000 (11:10 +0800)
* src/xmenu.c (x_activate_menubar) [USE_MOTIF]: Clear XI grab.
* src/xterm.c (xi_grab_or_ungrab_device) [USE_MOTIF]: Always
ungrab if a popup is active.

src/xmenu.c
src/xterm.c

index 07255911f9792b320919372855112a8ba0371415..4d969fa25f87af9cfeb2b8f610c06f84082f832a 100644 (file)
@@ -51,6 +51,10 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 #include "msdos.h"
 #endif
 
+#ifdef HAVE_XINPUT2
+#include <X11/extensions/XInput2.h>
+#endif
+
 #ifdef HAVE_X_WINDOWS
 /* This may include sys/types.h, and that somehow loses
    if this is not done before the other system files.  */
@@ -444,6 +448,18 @@ x_activate_menubar (struct frame *f)
   XPutBackEvent (f->output_data.x->display_info->display,
                  f->output_data.x->saved_menu_event);
 #else
+#ifdef USE_MOTIF
+  struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
+  /* Clear the XI2 grab so Motif can set a core grab.  Otherwise some
+     versions of Motif will emit a warning and hang.  */
+
+  if (dpyinfo->num_devices)
+    {
+      for (int i = 0; i < dpyinfo->num_devices; ++i)
+       XIUngrabDevice (dpyinfo->display, dpyinfo->devices[i].device_id,
+                       CurrentTime);
+    }
+#endif
   XtDispatchEvent (f->output_data.x->saved_menu_event);
 #endif
   unblock_input ();
index b8cf637f436550683995f9443375759e2c8beb73..aa88610961cbab49c9882b743d27d5358c84aa15 100644 (file)
@@ -637,7 +637,11 @@ xi_grab_or_ungrab_device (struct xi_device_t *device,
   XISetMask (m, XI_Enter);
   XISetMask (m, XI_Leave);
 
-  if (device->grab)
+  if (device->grab
+#ifdef USE_MOTIF
+      && !popup_activated ()
+#endif
+      )
     {
       XIGrabDevice (dpyinfo->display, device->device_id, window,
                    CurrentTime, None, GrabModeAsync,