]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fx_file_dialog) [HAVE_MOTIF_2_1]: Handle events
authorGerd Moellmann <gerd@gnu.org>
Thu, 22 Jun 2000 22:05:55 +0000 (22:05 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 22 Jun 2000 22:05:55 +0000 (22:05 +0000)
differently.

src/xfns.c

index 8edbd66b160df0e0fd8abeb7c7fb586e5d29a60d..3136c764bc46b3029533e698eed5344ab983c1cb 100644 (file)
@@ -10053,6 +10053,15 @@ selection dialog's entry field, if MUSTMATCH is non-nil.")
       XmListSetPos (list, item_pos);
     }
 
+#ifdef HAVE_MOTIF_2_1
+
+  /* Process events until the user presses Cancel or OK.  */
+  result = 0;
+  while (result == 0 || XtAppPending (Xt_app_con))
+    XtAppProcessEvent (Xt_app_con, XtIMAll);
+
+#else /* not HAVE_MOTIF_2_1 */
+  
   /* Process all events until the user presses Cancel or OK.  */
   for (result = 0; result == 0;)
     {
@@ -10068,13 +10077,15 @@ selection dialog's entry field, if MUSTMATCH is non-nil.")
       parent = widget;
       while (parent && parent != dialog)
        parent = XtParent (parent);
-      
+
       if (parent == dialog
          || (event.type == Expose
              && !process_expose_from_menu (event)))
        XtDispatchEvent (&event);
     }
 
+#endif /* not HAVE_MOTIF_2_1 */
+
   /* Get the result.  */
   if (result == XmCR_OK)
     {