commit 3bb45ae00b8f6c674d36b0a0c068e53c3c8a24c1
parent 6ff22e702048654f2df686fe95cea2e1cc449401
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Wed, 19 Jul 2006 00:21:17 +0000
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
Diffstat:
2 files changed, 7 insertions(+), 0 deletions(-)
diff --git 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
@@ -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);