From: Po Lu Date: Sat, 13 Aug 2022 02:36:54 +0000 (+0800) Subject: ; * src/xfns.c (Fx_set_mouse_absolute_pixel_position): Fix typo. X-Git-Tag: emacs-29.0.90~1447^2~204 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4e23ecb882698fef45f09128300435edcb54e3d7;p=emacs.git ; * src/xfns.c (Fx_set_mouse_absolute_pixel_position): Fix typo. --- diff --git a/src/xfns.c b/src/xfns.c index 144f64f6f62..6ed93ee42ca 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -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