From 3bb45ae00b8f6c674d36b0a0c068e53c3c8a24c1 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Wed, 19 Jul 2006 00:21:17 +0000 Subject: [PATCH] per Daniel Richard G.'s patch, in parse_rcfile(), add missing ENABLE_COLOR #ifdef around the second check for a syntax with no color commands, to fix compilation without color support git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3794 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 5 +++++ src/rcfile.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index d38b3271..6401cd53 100644 --- a/ChangeLog +++ b/ChangeLog @@ -109,6 +109,11 @@ CVS code - - nano.h: - Remove the manual disabling of color support if regex.h isn't found, as configure.ac now handles that. (DLR) +- rcfile.c: + parse_rcfile() + - Add missing ENABLE_COLOR #ifdef around the second check for a + syntax with no color commands, to fix compilation without + color support. (Daniel Richard G.) - search.c: replace_regexp() - Remove unnecessary casting of c to int. (DLR) diff --git a/src/rcfile.c b/src/rcfile.c index 9ede47f1..002f23f1 100644 --- a/src/rcfile.c +++ b/src/rcfile.c @@ -834,9 +834,11 @@ void parse_rcfile(FILE *rcstream rcfile_error(N_("Unknown flag \"%s\""), option); } +#ifdef ENABLE_COLOR if (endsyntax != NULL && endcolor == NULL) rcfile_error(N_("Syntax \"%s\" has no color commands"), endsyntax->desc); +#endif free(buf); fclose(rcstream); -- 2.39.5