aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPo Lu2022-08-13 10:36:54 +0800
committerPo Lu2022-08-13 10:36:54 +0800
commit4e23ecb882698fef45f09128300435edcb54e3d7 (patch)
treec354371fc70e4d9628ffc295849483245bfd7c65
parente311d05ab100b5518b974ccaee148a35ae2dada0 (diff)
downloademacs-4e23ecb882698fef45f09128300435edcb54e3d7.tar.gz
emacs-4e23ecb882698fef45f09128300435edcb54e3d7.zip
; * src/xfns.c (Fx_set_mouse_absolute_pixel_position): Fix typo.
-rw-r--r--src/xfns.c4
1 files 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
6856 if (FRAME_DISPLAY_INFO (f)->supports_xi2 6856 if (FRAME_DISPLAY_INFO (f)->supports_xi2
6857 && deviceid != -1) 6857 && deviceid != -1)
6858 { 6858 {
6859 x_catch_errors_for_lisp (FRAME_X_DISPLAY (f)); 6859 x_catch_errors_for_lisp (FRAME_DISPLAY_INFO (f));
6860 XIWarpPointer (FRAME_X_DISPLAY (f), deviceid, None, 6860 XIWarpPointer (FRAME_X_DISPLAY (f), deviceid, None,
6861 FRAME_DISPLAY_INFO (f)->root_window, 6861 FRAME_DISPLAY_INFO (f)->root_window,
6862 0, 0, 0, 0, xval, yval); 6862 0, 0, 0, 0, xval, yval);
6863 x_uncatch_errors_for_lisp (FRAME_X_DISPLAY (f)); 6863 x_uncatch_errors_for_lisp (FRAME_DISPLAY_INFO (f));
6864 } 6864 }
6865 else 6865 else
6866#endif 6866#endif