From 61d6a05830dfbf4d3ea0d811560ccdaa56459786 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sun, 21 Aug 2005 20:58:03 +0000 Subject: [PATCH] (redisplay_window): Call update_window_fringes with KEEP_CURRENT_P non-0 if we are going to refresh fringes later. --- src/xdisp.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/xdisp.c b/src/xdisp.c index 3a4f3f001ab..83483039b54 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -12730,10 +12730,9 @@ redisplay_window (window, just_this_one_p) #ifdef HAVE_WINDOW_SYSTEM if (FRAME_WINDOW_P (f) - && update_window_fringes (w, 0) - && !just_this_one_p - && (used_current_matrix_p || overlay_arrow_seen) - && !w->pseudo_window_p) + && update_window_fringes (w, (just_this_one_p + || (!used_current_matrix_p && !overlay_arrow_seen) + || w->pseudo_window_p))) { update_begin (f); BLOCK_INPUT; -- 2.39.2