aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2004-10-07 21:58:16 +0000
committerKim F. Storm2004-10-07 21:58:16 +0000
commit0a1527d6b5f2c64829fa21b6441f19f419c84886 (patch)
tree9d57f4de45ab313a7a3b2393fdfe35763444637c /src
parent11491cbb2a3544c16169b7e32b04311a1c22ddd0 (diff)
downloademacs-0a1527d6b5f2c64829fa21b6441f19f419c84886.tar.gz
emacs-0a1527d6b5f2c64829fa21b6441f19f419c84886.zip
(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.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c3
1 files changed, 2 insertions, 1 deletions
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)
12220 { 12220 {
12221 update_begin (f); 12221 update_begin (f);
12222 BLOCK_INPUT; 12222 BLOCK_INPUT;
12223 draw_window_fringes (w); 12223 if (draw_window_fringes (w, 1))
12224 x_draw_vertical_border (w);
12224 UNBLOCK_INPUT; 12225 UNBLOCK_INPUT;
12225 update_end (f); 12226 update_end (f);
12226 } 12227 }