+2014-03-27 Benno Schulenberg <bensberg@justemail.net>
+ * src/nano.c (main) - Fix compilation with --disable-utf8.
+
2014-03-27 Mike Frysinger <vapier@gentoo.org>.
* configure.ac - Make --disable-nanorc with --enable-color barf.
* configure.ac - Allow --disable-utf8 and --enable-utf8 to work.
#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
/* If whitespace wasn't specified, set its default value. */
if (whitespace == NULL) {
+#ifdef ENABLE_UTF8
if (using_utf8()) {
whitespace = mallocstrcpy(NULL, "»·");
whitespace_len[0] = 2;
whitespace_len[1] = 2;
- } else {
+ } else
+#endif
+ {
whitespace = mallocstrcpy(NULL, ">.");
whitespace_len[0] = 1;
whitespace_len[1] = 1;