1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-31 20:02:42 +00:00

(x_draw_glyphs): Don't check for cursor overwriting

in full-width rows.
This commit is contained in:
Gerd Moellmann 2001-10-24 16:05:41 +00:00
parent b547b6e89b
commit d9e3b8c640
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2001-10-24 Gerd Moellmann <gerd@gnu.org>
* xterm.c (x_draw_glyphs): Don't check for cursor overwriting
in full-width rows.
* xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
Fix clearing of area not covered by scroll bar.

View File

@ -5171,7 +5171,7 @@ x_draw_glyphs (w, x, row, area, start, end, hl, overlaps_p)
for (s = head; s; s = s->next)
x_draw_glyph_string (s);
if (area == TEXT_AREA)
if (area == TEXT_AREA && !row->full_width_p)
{
int x0 = head ? head->x : x;
int x1 = tail ? tail->x + tail->background_width : x;