From: Po Lu Date: Sat, 25 Jun 2022 06:38:54 +0000 (+0800) Subject: Fix non-XI2 build X-Git-Tag: emacs-29.0.90~1447^2~1480 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d392ad7c5c914db7edc59b86bfe00c4fe0a7e3a5;p=emacs.git Fix non-XI2 build * src/xterm.c (handle_one_xevent): Don't make `event' const when passing it to RandR functions. Also, update out of date comment. --- diff --git a/src/xterm.c b/src/xterm.c index d03b9a6d618..7f43e21e884 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -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))