Mercurial > emacs
changeset 9340:97cfba406b7b
(construct_mouse_click): Don't use XFASTINT as an lvalue.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 04 Oct 1994 19:48:36 +0000 |
parents | 8a59acc95eea |
children | e5ecfda9e730 |
files | src/xterm.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xterm.c Tue Oct 04 19:47:37 1994 +0000 +++ b/src/xterm.c Tue Oct 04 19:48:36 1994 +0000 @@ -1740,8 +1740,8 @@ #if 0 pixel_to_glyph_coords (f, event->x, event->y, &column, &row, NULL, 0); - XFASTINT (result->x) = column; - XFASTINT (result->y) = row; + XSETFASTINT (result->x, column); + XSETFASTINT (result->y, row); #endif XSETINT (result->x, event->x); XSETINT (result->y, event->y);