changeset 45746:8f026a28517c

(tty_lookup_color): Type bool/Lisp_Object mismatch fixed.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 11 Jun 2002 15:09:36 +0000
parents 394a19fc134e
children 2049fa380cb1
files src/xfaces.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/xfaces.c	Tue Jun 11 01:50:36 2002 +0000
+++ b/src/xfaces.c	Tue Jun 11 15:09:36 2002 +0000
@@ -1375,7 +1375,7 @@
 	     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);