diff options
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2011-06-18 09:37:38 +0900 |
---|---|---|
committer | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2011-06-18 09:37:38 +0900 |
commit | 989b42d2c7e50480d1bec3503239a3da22a38ae7 (patch) | |
tree | fd58fb3088565f9b46db1b4059a01c632f008680 /src/dispnew.c | |
parent | 4fd75609cb0c15c2ef10c6ce0a189089fd05e085 (diff) | |
download | emacs-989b42d2c7e50480d1bec3503239a3da22a38ae7.tar.gz |
* dispnew.c (scrolling_window): Before scrolling, turn off a mouse-highlight in the window being scrolled.
Diffstat (limited to 'src/dispnew.c')
-rw-r--r-- | src/dispnew.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index 4c460abd636..d2878a4fa57 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -5206,6 +5206,7 @@ scrolling_window (w, header_line_p) /* Copy on the display. */ if (r->current_y != r->desired_y) { + rif->clear_window_mouse_face (w); rif->scroll_run_hook (w, r); /* Invalidate runs that copy from where we copied to. */ |