aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-06-11 14:32:08 +0000
committerJim Blandy1993-06-11 14:32:08 +0000
commit14709f21f65f2b5190a5700b9bae1d0cd5c7f508 (patch)
treed0fd2de6cdb72b4875b3e721f7318fa1bdd719c0 /src
parent3008ffb6cd5a286585c27161cfbb0b4a07c760f4 (diff)
downloademacs-14709f21f65f2b5190a5700b9bae1d0cd5c7f508.tar.gz
emacs-14709f21f65f2b5190a5700b9bae1d0cd5c7f508.zip
* xdisp.c (redisplay_window): Don't call try_window_id if the
window isn't starting at the beginning of the line.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 6c6ee02a07d..3acdaed0740 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -950,6 +950,8 @@ redisplay_window (window, just_this_one)
950 else if (just_this_one && !MINI_WINDOW_P (w) 950 else if (just_this_one && !MINI_WINDOW_P (w)
951 && point >= startp 951 && point >= startp
952 && XFASTINT (w->last_modified) 952 && XFASTINT (w->last_modified)
953 /* or else vmotion on first line won't work. */
954 && ! NILP (w->start_at_line_beg)
953 && ! EQ (w->window_end_valid, Qnil) 955 && ! EQ (w->window_end_valid, Qnil)
954 && do_id && !clip_changed 956 && do_id && !clip_changed
955 && !blank_end_of_window 957 && !blank_end_of_window