aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2011-06-18 09:37:38 +0900
committerYAMAMOTO Mitsuharu2011-06-18 09:37:38 +0900
commit989b42d2c7e50480d1bec3503239a3da22a38ae7 (patch)
treefd58fb3088565f9b46db1b4059a01c632f008680 /src
parent4fd75609cb0c15c2ef10c6ce0a189089fd05e085 (diff)
downloademacs-989b42d2c7e50480d1bec3503239a3da22a38ae7.tar.gz
emacs-989b42d2c7e50480d1bec3503239a3da22a38ae7.zip
* dispnew.c (scrolling_window): Before scrolling, turn off a mouse-highlight in the window being scrolled.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/dispnew.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 503f0c8e300..46fef8b9285 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12011-06-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * dispnew.c (scrolling_window): Before scrolling, turn off a
4 mouse-highlight in the window being scrolled.
5
12011-06-16 Paul Eggert <eggert@cs.ucla.edu> 62011-06-16 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF. (Bug#8839) 8 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF. (Bug#8839)
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)
5206 /* Copy on the display. */ 5206 /* Copy on the display. */
5207 if (r->current_y != r->desired_y) 5207 if (r->current_y != r->desired_y)
5208 { 5208 {
5209 rif->clear_window_mouse_face (w);
5209 rif->scroll_run_hook (w, r); 5210 rif->scroll_run_hook (w, r);
5210 5211
5211 /* Invalidate runs that copy from where we copied to. */ 5212 /* Invalidate runs that copy from where we copied to. */