]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_fix_overlapping_area): Always use area relative X to fix redisplay
authorKim F. Storm <storm@cua.dk>
Sat, 14 Jun 2003 23:01:54 +0000 (23:01 +0000)
committerKim F. Storm <storm@cua.dk>
Sat, 14 Jun 2003 23:01:54 +0000 (23:01 +0000)
problem with tall characters (such as A-tilde).

src/xdisp.c

index c8ecbcbd7986b94d3f7034e8e17e8a7a2885b738..64bda46c1bf16372c2ebdd68150ab71a3c746710 100644 (file)
@@ -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)