]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmouse_position): Use NULL, not 0, as arg of pixel_to_glyph_coords.
authorKarl Heuer <kwzh@gnu.org>
Mon, 29 May 1995 21:03:47 +0000 (21:03 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 29 May 1995 21:03:47 +0000 (21:03 +0000)
src/frame.c

index 1d377f5a0dac9e59af2b70e9031816bd517c5efe..ab4713b2d669aeefa5bc24f7c3f6cba1a2a70a75 100644 (file)
@@ -1096,7 +1096,7 @@ and nil for X and Y.")
     {
       col = XINT (x);
       row = XINT (y);
-      pixel_to_glyph_coords (f, col, row, &col, &row, 0, 1);
+      pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
       XSETINT (x, col);
       XSETINT (y, row);
     }