]> git.eshelyaron.com Git - emacs.git/commitdiff
* gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
authorAndreas Schwab <schwab@linux-m68k.org>
Tue, 14 Aug 2012 08:06:07 +0000 (10:06 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Tue, 14 Aug 2012 08:06:07 +0000 (10:06 +0200)
src/ChangeLog
src/gtkutil.c

index e622d95bff811af95e16715b4b5692621fbd8f83..eef02da44e3783396ed95eeefd6b8a641d41b584 100644 (file)
@@ -1,3 +1,7 @@
+2012-08-14  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
+
 2012-08-14  Gergely Risko  <gergely@risko.hu>
 
        * coding.c (decode_coding): Record buffer modification before
index e538c35806900b8b4ecc80e4e51448a0f5885134..55f5639fdb7e4e50d56e1c7010723f9206b69d43 100644 (file)
@@ -4306,7 +4306,7 @@ find_rtl_image (FRAME_PTR f, Lisp_Object image, Lisp_Object rtl)
         {
           file = call1 (intern ("file-name-sans-extension"),
                        Ffile_name_nondirectory (file));
-          if (EQ (Fequal (file, rtl_name), Qt))
+          if (! NILP (Fequal (file, rtl_name)))
             {
               image = rtl_image;
               break;
@@ -4583,8 +4583,8 @@ update_frame_tool_bar (FRAME_PTR f)
       && tbinfo->n_last_items == f->n_tool_bar_items
       && tbinfo->hmargin == hmargin && tbinfo->vmargin == vmargin
       && tbinfo->dir == dir
-      && EQ (Fequal (tbinfo->style, style), Qt)
-      && EQ (Fequal (tbinfo->last_tool_bar, f->tool_bar_items), Qt))
+      && ! NILP (Fequal (tbinfo->style, style))
+      && ! NILP (Fequal (tbinfo->last_tool_bar, f->tool_bar_items)))
     {
       UNBLOCK_INPUT;
       return;