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
- 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)
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);