* doc/syntax/{changelog,c,po}.nanorc: Some small extra colourings.
* configure.ac, doc/texinfo/nano.texi: Make --enable-tiny disable
the use of libmagic, and document the --disable-libmagic flag.
+ * src/nano.c (version): Print the correct --enable/--disable option.
2014-04-10 Benno Schulenberg <bensberg@justemail.net>
* doc/syntax/Makefile.am: Add four recent syntaxes to the packlist.
#ifndef DISABLE_JUSTIFY
printf(" --enable-justify");
#endif
+#ifdef HAVE_LIBMAGIC
+ printf(" --enable-libmagic");
+#endif
#ifndef DISABLE_MOUSE
printf(" --enable-mouse");
#endif
#ifdef DISABLE_JUSTIFY
printf(" --disable-justify");
#endif
+#ifndef HAVE_LIBMAGIC
+ printf(" --disable-libmagic");
+#endif
#ifdef DISABLE_MOUSE
printf(" --disable-mouse");
#endif