From 51f86bfc2e1cc6fe65c08c6d86bb83541fe2410c Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 11 Jun 2002 15:09:36 +0000 Subject: [PATCH] (tty_lookup_color): Type bool/Lisp_Object mismatch fixed. --- src/xfaces.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xfaces.c b/src/xfaces.c index 4ae49d1cb5..7d41a41a83 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -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); -- 2.20.1