changeset 6924:88c4c40c8bd6

(Fmouse_position): Don't clip.
author Karl Heuer <kwzh@gnu.org>
date Sat, 16 Apr 1994 06:50:52 +0000
parents 5df81bebf7f7
children f6a18b7160b1
files src/frame.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/frame.c	Sat Apr 16 06:47:20 1994 +0000
+++ b/src/frame.c	Sat Apr 16 06:50:52 1994 +0000
@@ -927,7 +927,7 @@
     {
       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);
     }