# HG changeset patch # User Karl Heuer # Date 781285648 0 # Node ID 3115ae493c30b1b263f91454c994620211f51695 # Parent 4c75b1a563989b891a8614fae327ec9d6c0dba38 (direct_output_for_insert, direct_output_forward_char, change_frame_size, Fsleep_for): Don't use XFASTINT as an lvalue. diff -r 4c75b1a56398 -r 3115ae493c30 src/dispnew.c --- a/src/dispnew.c Tue Oct 04 15:45:26 1994 +0000 +++ b/src/dispnew.c Tue Oct 04 15:47:28 1994 +0000 @@ -1100,9 +1100,9 @@ } unchanged_modified = MODIFF; beg_unchanged = GPT - BEG; - XFASTINT (w->last_point) = point; - XFASTINT (w->last_point_x) = hpos; - XFASTINT (w->last_modified) = MODIFF; + XSETFASTINT (w->last_point, point); + XSETFASTINT (w->last_point_x, hpos); + XSETFASTINT (w->last_modified, MODIFF); reassert_line_highlight (0, vpos); write_glyphs (¤t_frame->glyphs[vpos][hpos], 1); @@ -1147,14 +1147,14 @@ /* Don't use direct output next to an invisible character since we might need to do something special. */ - XFASTINT (position) = point; + XSETFASTINT (position, point); if (XFASTINT (position) < ZV && ! NILP (Fget_char_property (position, Qinvisible, selected_window))) return 0; - XFASTINT (position) = point - 1; + XSETFASTINT (position, point - 1); if (XFASTINT (position) >= BEGV && ! NILP (Fget_char_property (position, Qinvisible, @@ -1163,8 +1163,8 @@ #endif FRAME_CURSOR_X (frame) += n; - XFASTINT (w->last_point_x) = FRAME_CURSOR_X (frame); - XFASTINT (w->last_point) = point; + XSETFASTINT (w->last_point_x, FRAME_CURSOR_X (frame)); + XSETFASTINT (w->last_point, point); cursor_to (FRAME_CURSOR_Y (frame), FRAME_CURSOR_X (frame)); fflush (stdout); @@ -2048,8 +2048,8 @@ /* Frame has both root and minibuffer. */ set_window_height (FRAME_ROOT_WINDOW (frame), newheight - 1 - FRAME_MENU_BAR_LINES (frame), 0); - XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (frame))->top) - = newheight - 1; + XSETFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (frame))->top, + newheight - 1); set_window_height (FRAME_MINIBUF_WINDOW (frame), 1, 0); } else @@ -2202,7 +2202,7 @@ { Lisp_Object zero; - XFASTINT (zero) = 0; + XSETFASTINT (zero, 0); wait_reading_process_input (sec, usec, zero, 0); }