emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r109593: * gtkutil.c (update_frame_to


From: Dmitry Antipov
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109593: * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
Date: Tue, 14 Aug 2012 08:47:05 +0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109593
committer: Dmitry Antipov <address@hidden>
branch nick: trunk
timestamp: Tue 2012-08-14 08:47:05 +0400
message:
  * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
modified:
  src/ChangeLog
  src/gtkutil.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-08-14 02:39:59 +0000
+++ b/src/ChangeLog     2012-08-14 04:47:05 +0000
@@ -1,3 +1,7 @@
+2012-08-14  Dmitry Antipov  <address@hidden>
+
+       * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
+
 2012-08-14  Paul Eggert  <address@hidden>
 
        * gtkutil.c (xg_mark_data): Don't assume C99.

=== modified file 'src/gtkutil.c'
--- a/src/gtkutil.c     2012-08-14 02:39:59 +0000
+++ b/src/gtkutil.c     2012-08-14 04:47:05 +0000
@@ -4583,8 +4583,8 @@
       && tbinfo->n_last_items == f->n_tool_bar_items
       && tbinfo->hmargin == hmargin && tbinfo->vmargin == vmargin
       && tbinfo->dir == dir
-      && Fequal (tbinfo->style, style) == Qt
-      && Fequal (tbinfo->last_tool_bar, f->tool_bar_items) == Qt)
+      && EQ (Fequal (tbinfo->style, style), Qt)
+      && EQ (Fequal (tbinfo->last_tool_bar, f->tool_bar_items), Qt))
     {
       UNBLOCK_INPUT;
       return;


reply via email to

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