From: Gerd Moellmann Date: Wed, 24 Oct 2001 16:06:45 +0000 (+0000) Subject: (x_draw_glyphs): Don't check for cursor overwriting X-Git-Tag: emacs-21.2~467 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=17f38380c9b518d4a9160bc2ba6f11c4d46c2ff4;p=emacs.git (x_draw_glyphs): Don't check for cursor overwriting in full-width rows. --- diff --git a/src/ChangeLog b/src/ChangeLog index d88145c7410..623e82366a0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2001-10-24 Gerd Moellmann + * 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. diff --git a/src/xterm.c b/src/xterm.c index ac1ef97c676..0fab4d04b35 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -5202,7 +5202,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;