summaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-06-26 08:44:49 +0000
committerRichard M. Stallman <rms@gnu.org>2002-06-26 08:44:49 +0000
commit8ce9dfc1c89917af8c44012a4f50647454d99c4a (patch)
treefa9bb4ce821a33b56998adff97f4f08daea689fd /src/window.c
parentc4174fbbd33076014273783e2d30566b8d93773b (diff)
downloademacs-8ce9dfc1c89917af8c44012a4f50647454d99c4a.tar.gz
(Frecenter): Don't set force_start flag.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c
index a63b91f7663..ee9cc610bb0 100644
--- a/src/window.c
+++ b/src/window.c
@@ -4781,7 +4781,11 @@ and redisplay normally--don't erase and redraw the frame. */)
/* 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