aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.c
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2001-10-24 16:05:41 +0000
committerGerd Moellmann <[email protected]>2001-10-24 16:05:41 +0000
commitd9e3b8c640991828f244e4dd0a72133fe51baf25 (patch)
treeb21dcf392cf5cc5485d747b30483d214ef23422c /src/xterm.c
parentb547b6e89b994636ed0d853916585812dc75ae99 (diff)
(x_draw_glyphs): Don't check for cursor overwriting
in full-width rows.
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index d134162f3c..a757caaa66 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -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;