]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fset_mouse_position, Fset_mouse_pixel_position): Fix
authorAndreas Schwab <schwab@suse.de>
Tue, 14 Apr 1998 13:00:00 +0000 (13:00 +0000)
committerAndreas Schwab <schwab@suse.de>
Tue, 14 Apr 1998 13:00:00 +0000 (13:00 +0000)
mixing of Lisp_Object and int.

src/frame.c

index 8ede3ac97ea00d51a151b20e2866e557cd127000..cb597b0c614fa813dff9bad1b797978dbe8b7d21 100644 (file)
@@ -1376,7 +1376,7 @@ before calling this function on it, like this.\n\
 #ifdef HAVE_WINDOW_SYSTEM
   if (FRAME_WINDOW_P (XFRAME (frame)))
     /* Warping the mouse will cause  enternotify and focus events. */
-    x_set_mouse_position (XFRAME (frame), x, y);
+    x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
 #else
 #if defined (MSDOS) && defined (HAVE_MOUSE)
   if (FRAME_MSDOS_P (XFRAME (frame)))
@@ -1408,7 +1408,7 @@ before calling this function on it, like this.\n\
 #ifdef HAVE_WINDOW_SYSTEM
   if (FRAME_WINDOW_P (XFRAME (frame)))
     /* Warping the mouse will cause  enternotify and focus events. */
-    x_set_mouse_pixel_position (XFRAME (frame), x, y);
+    x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
 #else
 #if defined (MSDOS) && defined (HAVE_MOUSE)
   if (FRAME_MSDOS_P (XFRAME (frame)))