diff options
| author | Paul Eggert | 2011-06-25 11:31:36 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-06-25 11:31:36 -0700 |
| commit | 948b98fd3c17e56b5fa606eedbe6487091f2b66d (patch) | |
| tree | 470d98f5aa36d512902da3db4d9f35b3c0fe6f07 /src | |
| parent | 7a7ef429182915745380c3074771d9f747dab964 (diff) | |
| parent | 11fdef7d0cf3ef1ce30d1cd09ca9ca9a2b099d20 (diff) | |
| download | emacs-948b98fd3c17e56b5fa606eedbe6487091f2b66d.tar.gz emacs-948b98fd3c17e56b5fa606eedbe6487091f2b66d.zip | |
Merge from trunk.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/dispnew.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 792208f7c29..78ab05728c6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -3,6 +3,11 @@ | |||
| 3 | Use gnulib's dup2 module instead of rolling our own. | 3 | Use gnulib's dup2 module instead of rolling our own. |
| 4 | * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this. | 4 | * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this. |
| 5 | 5 | ||
| 6 | 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 7 | |||
| 8 | * dispnew.c (scrolling_window): Before scrolling, turn off a | ||
| 9 | mouse-highlight in the window being scrolled. | ||
| 10 | |||
| 6 | 2011-06-24 Juanma Barranquero <lekktu@gmail.com> | 11 | 2011-06-24 Juanma Barranquero <lekktu@gmail.com> |
| 7 | 12 | ||
| 8 | Move DEFSYM to lisp.h and use everywhere. | 13 | Move DEFSYM to lisp.h and use everywhere. |
diff --git a/src/dispnew.c b/src/dispnew.c index c33442d5048..8691c921853 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -4543,6 +4543,7 @@ scrolling_window (struct window *w, int header_line_p) | |||
| 4543 | /* Copy on the display. */ | 4543 | /* Copy on the display. */ |
| 4544 | if (r->current_y != r->desired_y) | 4544 | if (r->current_y != r->desired_y) |
| 4545 | { | 4545 | { |
| 4546 | rif->clear_window_mouse_face (w); | ||
| 4546 | rif->scroll_run_hook (w, r); | 4547 | rif->scroll_run_hook (w, r); |
| 4547 | 4548 | ||
| 4548 | /* Invalidate runs that copy from where we copied to. */ | 4549 | /* Invalidate runs that copy from where we copied to. */ |