]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/xfns.c (Fx_set_mouse_absolute_pixel_position): Fix typo.
authorPo Lu <luangruo@yahoo.com>
Sat, 13 Aug 2022 02:36:54 +0000 (10:36 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 13 Aug 2022 02:36:54 +0000 (10:36 +0800)
src/xfns.c

index 144f64f6f62429f36a39c28a4c31d80b05fbae67..6ed93ee42cadacd43c8be6fa11ba31d0529b7f3a 100644 (file)
@@ -6856,11 +6856,11 @@ The coordinates X and Y are interpreted in pixels relative to a position
   if (FRAME_DISPLAY_INFO (f)->supports_xi2
       && deviceid != -1)
     {
-      x_catch_errors_for_lisp (FRAME_X_DISPLAY (f));
+      x_catch_errors_for_lisp (FRAME_DISPLAY_INFO (f));
       XIWarpPointer (FRAME_X_DISPLAY (f), deviceid, None,
                     FRAME_DISPLAY_INFO (f)->root_window,
                     0, 0, 0, 0, xval, yval);
-      x_uncatch_errors_for_lisp (FRAME_X_DISPLAY (f));
+      x_uncatch_errors_for_lisp (FRAME_DISPLAY_INFO (f));
     }
   else
 #endif