]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmouse_position): Don't clip.
authorKarl Heuer <kwzh@gnu.org>
Sat, 16 Apr 1994 06:50:52 +0000 (06:50 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sat, 16 Apr 1994 06:50:52 +0000 (06:50 +0000)
src/frame.c

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