diff src/window.c @ 16555:6aea522a93c7

(Fdelete_other_windows): Set optional_new_start instead of force_start.
author Richard M. Stallman <rms@gnu.org>
date Sun, 10 Nov 1996 00:26:03 +0000
parents 63ca7c6ceeff
children d62b7f309f2b
line wrap: on
line diff
--- a/src/window.c	Sun Nov 10 00:25:30 1996 +0000
+++ b/src/window.c	Sun Nov 10 00:26:03 1996 +0000
@@ -1564,13 +1564,14 @@
       /* This computation used to temporarily move point, but that can
 	 have unwanted side effects due to text properties.  */
       pos = *vmotion (startpos, -top, w);
+
       Fset_marker (w->start, make_number (pos.bufpos), w->buffer);
       w->start_at_line_beg = ((pos.bufpos == BEGV
 			       || FETCH_CHAR (pos.bufpos - 1) == '\n') ? Qt
 			      : Qnil);
       /* We need to do this, so that the window-scroll-functions
 	 get called.  */
-      w->force_start = Qt;
+      w->optional_new_start = Qt;
 
       set_buffer_internal (obuf);
     }