# HG changeset patch # User Juri Linkov # Date 1120143362 0 # Node ID 675ea4d66e85cbe6d03b085bcb7c77d112f74d67 # Parent 97c5ed4f08bc2bde448afe1feac4bd5277d3be68 (x_draw_vertical_border): If left fringe is not present decrease x coord of vertical border by 1 pixel to not occupy text area of the right window. diff -r 97c5ed4f08bc -r 675ea4d66e85 src/xdisp.c --- a/src/xdisp.c Thu Jun 30 14:20:56 2005 +0000 +++ b/src/xdisp.c Thu Jun 30 14:56:02 2005 +0000 @@ -22400,6 +22400,9 @@ window_box_edges (w, -1, &x0, &y0, &x1, &y1); y1 -= 1; + if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0) + x1 -= 1; + rif->draw_vertical_window_border (w, x1, y0, y1); } else if (!WINDOW_LEFTMOST_P (w) @@ -22410,6 +22413,9 @@ window_box_edges (w, -1, &x0, &y0, &x1, &y1); y1 -= 1; + if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0) + x0 -= 1; + rif->draw_vertical_window_border (w, x0, y0, y1); } }