]> git.eshelyaron.com Git - emacs.git/commitdiff
(redisplay_window): Call update_window_fringes with
authorKim F. Storm <storm@cua.dk>
Sun, 21 Aug 2005 20:58:03 +0000 (20:58 +0000)
committerKim F. Storm <storm@cua.dk>
Sun, 21 Aug 2005 20:58:03 +0000 (20:58 +0000)
KEEP_CURRENT_P non-0 if we are going to refresh fringes later.

src/xdisp.c

index 3a4f3f001ab2301c2caa6a0048705befd17d9c1f..83483039b5413d56d5718ba834a22e17ed4ef5b3 100644 (file)
@@ -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;