2015-04-03 Benno Schulenberg <bensberg@justemail.net>
* README: Update text to the fifth milestone: 2.4.x, plus tweaks.
+ * src/rcfile.c: Remove two superfluous (because nested) #ifndefs.
2015-03-28 Benno Schulenberg <bensberg@justemail.net>
* src/search.c (search_init_globals, search_replace_abort),
fprintf(stderr, "Parsing file \"%s\"\n", file);
#endif
- parse_rcfile(rcstream
-#ifndef DISABLE_COLOR
- , TRUE
-#endif
- );
+ parse_rcfile(rcstream, TRUE);
}
void parse_include(char *ptr)
}
}
-#ifndef DISABLE_COLOR
/* Parse the magic regexes that may influence the choice of syntax. */
void parse_magic_exp(char *ptr)
{
}
#endif /* HAVE_LIBMAGIC */
}
-#endif /* !DISABLE_COLOR */
-/* Parse the linter requested for this syntax. Simple? */
+/* Parse the linter requested for this syntax. */
void parse_linter(char *ptr)
{
assert(ptr != NULL);
endsyntax->linter = mallocstrcpy(syntaxes->linter, ptr);
}
+/* Parse the formatter requested for this syntax. */
void parse_formatter(char *ptr)
{
assert(ptr != NULL);