From: Kim F. Storm Date: Thu, 7 Oct 2004 21:58:16 +0000 (+0000) Subject: (redisplay_window): Fix flicker on vertical line between X-Git-Tag: ttn-vms-21-2-B4~4681 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0a1527d6b5f2c64829fa21b6441f19f419c84886;p=emacs.git (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 --git a/src/xdisp.c b/src/xdisp.c index 37a0f9bb9d0..b7a24a4364b 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -12220,7 +12220,8 @@ redisplay_window (window, just_this_one_p) { 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); }