]> git.eshelyaron.com Git - emacs.git/commitdiff
(construct_mouse_click): Don't use XFASTINT as an lvalue.
authorKarl Heuer <kwzh@gnu.org>
Tue, 4 Oct 1994 19:48:36 +0000 (19:48 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 4 Oct 1994 19:48:36 +0000 (19:48 +0000)
src/xterm.c

index 9721233a07572ed644a52c0bf90bcebea0ff5be8..d9348a683861659a1fd2e56d0d66541070e24a1c 100644 (file)
@@ -1740,8 +1740,8 @@ construct_mouse_click (result, event, f)
 
 #if 0
     pixel_to_glyph_coords (f, event->x, event->y, &column, &row, NULL, 0);
-    XFASTINT (result->x) = column;
-    XFASTINT (result->y) = row;
+    XSETFASTINT (result->x, column);
+    XSETFASTINT (result->y, row);
 #endif
     XSETINT (result->x, event->x);
     XSETINT (result->y, event->y);