# HG changeset patch # User Kim F. Storm # Date 1124657883 0 # Node ID cbd9034375bed831f900cf088a317304e1f074fa # Parent 8370ced2ae75f3b29e60426ed2e3bd70a3bc2125 (redisplay_window): Call update_window_fringes with KEEP_CURRENT_P non-0 if we are going to refresh fringes later. diff -r 8370ced2ae75 -r cbd9034375be src/xdisp.c --- a/src/xdisp.c Sun Aug 21 20:57:42 2005 +0000 +++ b/src/xdisp.c Sun Aug 21 20:58:03 2005 +0000 @@ -12730,10 +12730,9 @@ #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;