Mercurial > emacs
diff src/xdisp.c @ 3648:9838d64cc5ae
* xdisp.c (redisplay_window): Don't call try_window_id if the
window isn't starting at the beginning of the line.
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Fri, 11 Jun 1993 14:32:08 +0000 |
| parents | 7d077274d4bb |
| children | 82856e3ea14d |
line wrap: on
line diff
--- a/src/xdisp.c Fri Jun 11 11:33:31 1993 +0000 +++ b/src/xdisp.c Fri Jun 11 14:32:08 1993 +0000 @@ -950,6 +950,8 @@ else if (just_this_one && !MINI_WINDOW_P (w) && point >= startp && XFASTINT (w->last_modified) + /* or else vmotion on first line won't work. */ + && ! NILP (w->start_at_line_beg) && ! EQ (w->window_end_valid, Qnil) && do_id && !clip_changed && !blank_end_of_window
