Index: src/xdisp.c =================================================================== RCS file: /cvsroot/emacs/emacs/src/xdisp.c,v retrieving revision 1.1028 diff -c -r1.1028 xdisp.c *** src/xdisp.c 25 Jun 2005 22:35:42 -0000 1.1028 --- src/xdisp.c 27 Jun 2005 23:11:18 -0000 *************** *** 22400,22405 **** --- 22400,22408 ---- 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,22415 **** --- 22413,22421 ---- 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); } } -- Juri Linkov http://www.jurta.org/emacs/