aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-18 19:43:04 +0000
committerGerd Moellmann2000-07-18 19:43:04 +0000
commit62ba722af5b41693f8f7b5a3e6645eddd8deabc3 (patch)
tree042e962d84c661fb9fe803ec94e56034084e5017 /src
parent94354bddf174dff4d076ccb37c8ec3b03d9233ce (diff)
downloademacs-62ba722af5b41693f8f7b5a3e6645eddd8deabc3.tar.gz
emacs-62ba722af5b41693f8f7b5a3e6645eddd8deabc3.zip
(update_text_area): Write the whole row if it
has mouse-face in it.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index f0d7d3ea6dc..5ab468e6ee6 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -3938,6 +3938,7 @@ update_text_area (w, vpos)
3938 || desired_row->phys_height != current_row->phys_height 3938 || desired_row->phys_height != current_row->phys_height
3939 || desired_row->visible_height != current_row->visible_height 3939 || desired_row->visible_height != current_row->visible_height
3940 || current_row->overlapped_p 3940 || current_row->overlapped_p
3941 || current_row->mouse_face_p
3941 || current_row->x != desired_row->x) 3942 || current_row->x != desired_row->x)
3942 { 3943 {
3943 rif->cursor_to (vpos, 0, desired_row->y, desired_row->x); 3944 rif->cursor_to (vpos, 0, desired_row->y, desired_row->x);