# HG changeset patch # User Kim F. Storm # Date 1097186296 0 # Node ID 1caa36568da622e1b960074020bd6a49e182e197 # Parent 3c27c0be625d661b15b76438bd7e18f9b6161315 (redisplay_window): Fix flicker on vertical line between windows. Update vertical line after drawing window fringes, but only if actually drawing any bitmaps--or there is no fringe. diff -r 3c27c0be625d -r 1caa36568da6 src/xdisp.c --- a/src/xdisp.c Thu Oct 07 21:57:53 2004 +0000 +++ b/src/xdisp.c Thu Oct 07 21:58:16 2004 +0000 @@ -12220,7 +12220,8 @@ { update_begin (f); BLOCK_INPUT; - draw_window_fringes (w); + if (draw_window_fringes (w, 1)) + x_draw_vertical_border (w); UNBLOCK_INPUT; update_end (f); }