]> git.eshelyaron.com Git - emacs.git/commitdiff
(tty_lookup_color): Type bool/Lisp_Object mismatch fixed.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 11 Jun 2002 15:09:36 +0000 (15:09 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 11 Jun 2002 15:09:36 +0000 (15:09 +0000)
src/xfaces.c

index 4ae49d1cb54de6e9ba48d33ea53ccb4b11d7fc7e..7d41a41a83be83621124ce2d8108848cc1d19e41 100644 (file)
@@ -1375,7 +1375,7 @@ tty_lookup_color (f, color, tty_color, std_color)
             a standard color, we just give up and use TTY_COLOR.  */
          if ((!STRINGP (XCAR (color_desc))
               || NILP (Fstring_equal (color, XCAR (color_desc))))
-             && Ffboundp (Qtty_color_standard_values))
+             && !NILP (Ffboundp (Qtty_color_standard_values)))
            {
              /* Look up STD_COLOR separately.  */
              rgb = call1 (Qtty_color_standard_values, color);