diff options
| author | Stefan Monnier | 2002-06-11 15:09:36 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-06-11 15:09:36 +0000 |
| commit | 51f86bfc2e1cc6fe65c08c6d86bb83541fe2410c (patch) | |
| tree | f78111a3a5792a722216df628e40cdfe9fabf8d9 /src | |
| parent | 82c3d8525f29ceb8916fc9c7ee6d56e2f4ecf34c (diff) | |
| download | emacs-51f86bfc2e1cc6fe65c08c6d86bb83541fe2410c.tar.gz emacs-51f86bfc2e1cc6fe65c08c6d86bb83541fe2410c.zip | |
(tty_lookup_color): Type bool/Lisp_Object mismatch fixed.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 4ae49d1cb54..7d41a41a83b 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -1375,7 +1375,7 @@ tty_lookup_color (f, color, tty_color, std_color) | |||
| 1375 | a standard color, we just give up and use TTY_COLOR. */ | 1375 | a standard color, we just give up and use TTY_COLOR. */ |
| 1376 | if ((!STRINGP (XCAR (color_desc)) | 1376 | if ((!STRINGP (XCAR (color_desc)) |
| 1377 | || NILP (Fstring_equal (color, XCAR (color_desc)))) | 1377 | || NILP (Fstring_equal (color, XCAR (color_desc)))) |
| 1378 | && Ffboundp (Qtty_color_standard_values)) | 1378 | && !NILP (Ffboundp (Qtty_color_standard_values))) |
| 1379 | { | 1379 | { |
| 1380 | /* Look up STD_COLOR separately. */ | 1380 | /* Look up STD_COLOR separately. */ |
| 1381 | rgb = call1 (Qtty_color_standard_values, color); | 1381 | rgb = call1 (Qtty_color_standard_values, color); |