comparison src/xterm.c @ 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 873508897cc2
children be58ba7c209d
comparison
equal deleted inserted replaced
9339:8a59acc95eea 9340:97cfba406b7b
1738 { 1738 {
1739 int row, column; 1739 int row, column;
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);
1748 XSETFRAME (result->frame_or_window, f); 1748 XSETFRAME (result->frame_or_window, f);
1749 } 1749 }