]> git.wh0rd.org Git - nano.git/commitdiff
Fixing compilation with --disable-color.
authorBenno Schulenberg <bensberg@justemail.net>
Wed, 26 Mar 2014 19:20:41 +0000 (19:20 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Wed, 26 Mar 2014 19:20:41 +0000 (19:20 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4684 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/rcfile.c

index 6847b0b993bb12af478a7a68c71bf03d8a264dbc..5c8d330e2954653513c5206bc3e0d6ae63cbd5db 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@
        the mouse when mouse support is enabled: by holding down Shift.
        * nano.spec.in, doc/faq.html, doc/texinfo/nano.texi - Remove
        vestiges of the obsolete '--enable-all' configure flag.
+       * src/rcfile.c - Fix compilation with --disable-color.
 
 2014-03-26  Mike Frysinger  <vapier@gentoo.org>.
        * configure.ac - Clean up most of the --with/--enable flags:
index e1001676d1f34b7a11ab28b3f6f4ea94896679b1..c98d781b60456d025cf1ed4b9ef6380559cd9972 100644 (file)
@@ -1037,6 +1037,7 @@ void parse_rcfile(FILE *rcstream
        ptr = parse_next_word(ptr);
 
 
+#ifdef ENABLE_COLOR
        /* Handle extending first... */
        if (strcasecmp(keyword, "extendsyntax") == 0) {
            char *syntaxname = ptr;
@@ -1057,6 +1058,7 @@ void parse_rcfile(FILE *rcstream
                ptr = parse_next_word(ptr);
            }
        }
+#endif
 
        /* Try to parse the keyword. */
        if (strcasecmp(keyword, "set") == 0) {