changeset 46021:9aaff453806d

(Frecenter): Don't set force_start flag.
author Richard M. Stallman <rms@gnu.org>
date Wed, 26 Jun 2002 08:44:11 +0000
parents 9c590b35c6cf
children 313024b75e7d
files src/window.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/window.c	Wed Jun 26 08:43:23 2002 +0000
+++ b/src/window.c	Wed Jun 26 08:44:11 2002 +0000
@@ -4781,7 +4781,11 @@
   /* Set the new window start.  */
   set_marker_both (w->start, w->buffer, charpos, bytepos);
   w->window_end_valid = Qnil;
+#if 0 /* This is wrong because the whole idea is that point is
+	 on the screen.  If it moves away before redisplay,
+	 we should not override that.  */
   w->force_start = Qt;
+#endif
   if (bytepos == BEGV_BYTE || FETCH_BYTE (bytepos - 1) == '\n')
     w->start_at_line_beg = Qt;
   else