aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1994-04-11 21:43:12 +0000
committerKarl Heuer <[email protected]>1994-04-11 21:43:12 +0000
commit77ddeda4bc019cdcb24cc59b038a6cbbd021826b (patch)
treefbe4201e7243e7b355f193ab88f2354e60f6a5f4 /src
parent6cbff1cb500ac8b2bf80536cf6f0c2329bb82abf (diff)
(Fmouse_position) [!MULTI_FRAME]: Declare col and row.
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 60f50a86e0..4c928482e6 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1853,6 +1853,7 @@ and nil for X and Y.")
Lisp_Object lispy_dummy;
enum scroll_bar_part party_dummy;
Lisp_Object x, y;
+ int col, row;
unsigned long long_dummy;
f = selected_frame;
@@ -1864,7 +1865,6 @@ and nil for X and Y.")
&lispy_dummy, &party_dummy,
&x, &y,
&long_dummy);
-
col = XINT (x);
row = XINT (y);
glyph_to_pixel_coords (f, col, row, &col, &row);