From 4e23ecb882698fef45f09128300435edcb54e3d7 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Sat, 13 Aug 2022 10:36:54 +0800 Subject: [PATCH] ; * src/xfns.c (Fx_set_mouse_absolute_pixel_position): Fix typo. --- src/xfns.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5