aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2002-06-26 08:44:49 +0000
committerRichard M. Stallman2002-06-26 08:44:49 +0000
commit8ce9dfc1c89917af8c44012a4f50647454d99c4a (patch)
treefa9bb4ce821a33b56998adff97f4f08daea689fd /src
parentc4174fbbd33076014273783e2d30566b8d93773b (diff)
downloademacs-8ce9dfc1c89917af8c44012a4f50647454d99c4a.tar.gz
emacs-8ce9dfc1c89917af8c44012a4f50647454d99c4a.zip
(Frecenter): Don't set force_start flag.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/window.c4
2 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 864f6396d0b..305e0694de2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12002-06-26 Richard M. Stallman <rms@gnu.org> 12002-06-26 Richard M. Stallman <rms@gnu.org>
2 2
3 * window.c (Frecenter): Don't set force_start flag.
4
5 * minibuf.c (do_completion, Fminibuffer_complete_word)
6 (Fminibuffer_completion_help): Complete just the text before point.
7 (minibuffer_completion_contents): New function.
8
3 * buffer.c (Fbury_buffer): Use frames_discard_buffer. 9 * buffer.c (Fbury_buffer): Use frames_discard_buffer.
4 10
5 * frame.c (frames_bury_buffer): Function deleted. 11 * frame.c (frames_bury_buffer): Function deleted.
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. */)
4781 /* Set the new window start. */ 4781 /* Set the new window start. */
4782 set_marker_both (w->start, w->buffer, charpos, bytepos); 4782 set_marker_both (w->start, w->buffer, charpos, bytepos);
4783 w->window_end_valid = Qnil; 4783 w->window_end_valid = Qnil;
4784#if 0 /* This is wrong because the whole idea is that point is
4785 on the screen. If it moves away before redisplay,
4786 we should not override that. */
4784 w->force_start = Qt; 4787 w->force_start = Qt;
4788#endif
4785 if (bytepos == BEGV_BYTE || FETCH_BYTE (bytepos - 1) == '\n') 4789 if (bytepos == BEGV_BYTE || FETCH_BYTE (bytepos - 1) == '\n')
4786 w->start_at_line_beg = Qt; 4790 w->start_at_line_beg = Qt;
4787 else 4791 else