changeset 40259:1814c23c0524

(x_draw_glyphs): Don't check for cursor overwriting in full-width rows.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 24 Oct 2001 16:05:19 +0000
parents d7ed9c0db488
children e7be34625fd8
files src/xterm.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/xterm.c	Wed Oct 24 14:05:31 2001 +0000
+++ b/src/xterm.c	Wed Oct 24 16:05:19 2001 +0000
@@ -5171,7 +5171,7 @@
   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;