diff options
| author | Jim Blandy | 1993-06-11 14:32:08 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-06-11 14:32:08 +0000 |
| commit | 14709f21f65f2b5190a5700b9bae1d0cd5c7f508 (patch) | |
| tree | d0fd2de6cdb72b4875b3e721f7318fa1bdd719c0 /src | |
| parent | 3008ffb6cd5a286585c27161cfbb0b4a07c760f4 (diff) | |
| download | emacs-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.c | 2 |
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 |