aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 9721233a075..d9348a68386 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -1740,8 +1740,8 @@ construct_mouse_click (result, event, f)
1740 1740
1741#if 0 1741#if 0
1742 pixel_to_glyph_coords (f, event->x, event->y, &column, &row, NULL, 0); 1742 pixel_to_glyph_coords (f, event->x, event->y, &column, &row, NULL, 0);
1743 XFASTINT (result->x) = column; 1743 XSETFASTINT (result->x, column);
1744 XFASTINT (result->y) = row; 1744 XSETFASTINT (result->y, row);
1745#endif 1745#endif
1746 XSETINT (result->x, event->x); 1746 XSETINT (result->x, event->x);
1747 XSETINT (result->y, event->y); 1747 XSETINT (result->y, event->y);