aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-05-29 21:03:47 +0000
committerKarl Heuer1995-05-29 21:03:47 +0000
commit8126c3b47078b24f6390cd985a685ae58ade0f2a (patch)
tree502172ba6950642d4687f370dba571447ea1cd2f /src
parenta54d3a7352fc56af615b3ad2ce42be830417caa0 (diff)
downloademacs-8126c3b47078b24f6390cd985a685ae58ade0f2a.tar.gz
emacs-8126c3b47078b24f6390cd985a685ae58ade0f2a.zip
(Fmouse_position): Use NULL, not 0, as arg of pixel_to_glyph_coords.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index 1d377f5a0da..ab4713b2d66 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1096,7 +1096,7 @@ and nil for X and Y.")
1096 { 1096 {
1097 col = XINT (x); 1097 col = XINT (x);
1098 row = XINT (y); 1098 row = XINT (y);
1099 pixel_to_glyph_coords (f, col, row, &col, &row, 0, 1); 1099 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
1100 XSETINT (x, col); 1100 XSETINT (x, col);
1101 XSETINT (y, row); 1101 XSETINT (y, row);
1102 } 1102 }