]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix non-XI2 build
authorPo Lu <luangruo@yahoo.com>
Sat, 25 Jun 2022 06:38:54 +0000 (14:38 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 25 Jun 2022 06:38:54 +0000 (14:38 +0800)
* src/xterm.c (handle_one_xevent): Don't make `event' const when
passing it to RandR functions.  Also, update out of date
comment.

src/xterm.c

index d03b9a6d618c48b678dec01b1377fc28c312705f..7f43e21e88414fcb4de67d5ec7442419f0435be4 100644 (file)
@@ -16806,9 +16806,9 @@ handle_one_xevent (struct x_display_info *dpyinfo,
        SELECTION_EVENT_PROPERTY (&inev.sie) = eventp->property;
        SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
 
-       /* If drag-and-drop is in progress, handle SelectionRequest
-          events immediately, by setting hold_quit to the input
-          event.  */
+       /* If drag-and-drop or another modal dialog/menu is in
+          progress, handle SelectionRequest events immediately, by
+          pushing it onto the selecction queue.  */
 
        if (x_use_pending_selection_requests)
          {
@@ -22064,7 +22064,7 @@ handle_one_xevent (struct x_display_info *dpyinfo,
 
          if (event->type == (dpyinfo->xrandr_event_base
                              + RRScreenChangeNotify))
-           XRRUpdateConfiguration (event);
+           XRRUpdateConfiguration ((XEvent *) event);
 
          if (event->type == (dpyinfo->xrandr_event_base
                              + RRScreenChangeNotify))