Mercurial > emacs
comparison src/xdisp.c @ 66694:4e54f245caa7
(show_mouse_face): Clear mouse face to eol.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Fri, 04 Nov 2005 10:14:54 +0000 |
parents | 50f828c2b337 |
children | f8d550ae3b06 693e794b57bf |
comparison
equal
deleted
inserted
replaced
66693:7c9c30c7c4c4 | 66694:4e54f245caa7 |
---|---|
21330 } | 21330 } |
21331 | 21331 |
21332 if (row == last) | 21332 if (row == last) |
21333 end_hpos = dpyinfo->mouse_face_end_col; | 21333 end_hpos = dpyinfo->mouse_face_end_col; |
21334 else | 21334 else |
21335 end_hpos = row->used[TEXT_AREA]; | 21335 { |
21336 end_hpos = row->used[TEXT_AREA]; | |
21337 if (draw == DRAW_NORMAL_TEXT) | |
21338 row->fill_line_p = 1; /* Clear to end of line */ | |
21339 } | |
21336 | 21340 |
21337 if (end_hpos > start_hpos) | 21341 if (end_hpos > start_hpos) |
21338 { | 21342 { |
21339 draw_glyphs (w, start_x, row, TEXT_AREA, | 21343 draw_glyphs (w, start_x, row, TEXT_AREA, |
21340 start_hpos, end_hpos, | 21344 start_hpos, end_hpos, |