emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110893: * xdisp.c (echo_area_display


From: Dmitry Antipov
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110893: * xdisp.c (echo_area_display, redisplay_internal):
Date: Wed, 14 Nov 2012 15:13:33 +0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110893
committer: Dmitry Antipov <address@hidden>
branch nick: trunk
timestamp: Wed 2012-11-14 15:13:33 +0400
message:
  * xdisp.c (echo_area_display, redisplay_internal):
  Omit redundant check whether frame_garbaged is set.
modified:
  src/ChangeLog
  src/xdisp.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-11-14 04:55:41 +0000
+++ b/src/ChangeLog     2012-11-14 11:13:33 +0000
@@ -1,3 +1,8 @@
+2012-11-14  Dmitry Antipov  <address@hidden>
+
+       * xdisp.c (echo_area_display, redisplay_internal):
+       Omit redundant check whether frame_garbaged is set.
+
 2012-11-14  Paul Eggert  <address@hidden>
 
        Use faccessat, not access, when checking file permissions (Bug#12632).

=== modified file 'src/xdisp.c'
--- a/src/xdisp.c       2012-11-13 06:11:40 +0000
+++ b/src/xdisp.c       2012-11-14 11:13:33 +0000
@@ -10816,8 +10816,7 @@
 #endif /* HAVE_WINDOW_SYSTEM */
 
   /* Redraw garbaged frames.  */
-  if (frame_garbaged)
-    clear_garbaged_frames ();
+  clear_garbaged_frames ();
 
   if (!NILP (echo_area_buffer[0]) || minibuf_level == 0)
     {
@@ -13104,8 +13103,7 @@
     }
 
   /* Clear frames marked as garbaged.  */
-  if (frame_garbaged)
-    clear_garbaged_frames ();
+  clear_garbaged_frames ();
 
   /* Build menubar and tool-bar items.  */
   if (NILP (Vmemory_full))
@@ -13189,8 +13187,7 @@
          /* If window configuration was changed, frames may have been
             marked garbaged.  Clear them or we will experience
             surprises wrt scrolling.  */
-         if (frame_garbaged)
-           clear_garbaged_frames ();
+         clear_garbaged_frames ();
        }
     }
   else if (EQ (selected_window, minibuf_window)
@@ -13213,8 +13210,7 @@
       /* If window configuration was changed, frames may have been
         marked garbaged.  Clear them or we will experience
         surprises wrt scrolling.  */
-      if (frame_garbaged)
-       clear_garbaged_frames ();
+      clear_garbaged_frames ();
     }
 
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]