diff options
author | Kim F. Storm <storm@cua.dk> | 2003-06-14 23:01:54 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2003-06-14 23:01:54 +0000 |
commit | 57dd22f4e8afc84237a5c1d52461faba582e0fa5 (patch) | |
tree | ab699dc69adb4b985086be4418e0611f4ca62709 /src | |
parent | b3ea810c38ab6619d56f110a1c946bae0baa88d7 (diff) | |
download | emacs-57dd22f4e8afc84237a5c1d52461faba582e0fa5.tar.gz |
(x_fix_overlapping_area): Always use area relative X to fix redisplay
problem with tall characters (such as A-tilde).
Diffstat (limited to 'src')
-rw-r--r-- | src/xdisp.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index c8ecbcbd798..64bda46c1bf 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -18786,10 +18786,7 @@ x_fix_overlapping_area (w, row, area) BLOCK_INPUT; - x = window_box_left_offset (w, area); - if (area == TEXT_AREA) - x += row->x; - + x = 0; for (i = 0; i < row->used[area];) { if (row->glyphs[area][i].overlaps_vertically_p) |