- Add missing N_() around one message, so that it isn't
erroneously translated twice. (DLR)
- Remove inaccurate default listed for -Q/--quotestr. (DLR)
+ version()
+ - Add --enable-utf8 to the displayed compilation options, put
+ the options in alphabetical order, and handle --enable-tiny
+ the same way as all the other options. (DLR)
do_tab()
- Remove unneeded variable kbinput. (DLR)
do_int_spell_fix()
_(" Email: nano@nano-editor.org Web: http://www.nano-editor.org/"));
printf(_("\n Compiled options:"));
-#ifndef ENABLE_NLS
- printf(" --disable-nls");
-#endif
-#ifdef DEBUG
- printf(" --enable-debug");
-#endif
-#ifdef NANO_EXTRA
- printf(" --enable-extra");
-#endif
-#ifdef NANO_SMALL
- printf(" --enable-tiny");
-#else
#ifdef DISABLE_BROWSER
printf(" --disable-browser");
#endif
#ifdef DISABLE_MOUSE
printf(" --disable-mouse");
#endif
+#ifndef ENABLE_NLS
+ printf(" --disable-nls");
+#endif
#ifdef DISABLE_OPERATINGDIR
printf(" --disable-operatingdir");
#endif
#ifdef DISABLE_TABCOMP
printf(" --disable-tabcomp");
#endif
-#endif /* NANO_SMALL */
#ifdef DISABLE_WRAPPING
printf(" --disable-wrapping");
#endif
#ifdef ENABLE_COLOR
printf(" --enable-color");
#endif
+#ifdef DEBUG
+ printf(" --enable-debug");
+#endif
+#ifdef NANO_EXTRA
+ printf(" --enable-extra");
+#endif
#ifdef ENABLE_MULTIBUFFER
printf(" --enable-multibuffer");
#endif
#ifdef ENABLE_NANORC
printf(" --enable-nanorc");
#endif
+#ifdef NANO_SMALL
+ printf(" --enable-tiny");
+#endif
+#ifdef NANO_WIDE
+ printf(" --enable-utf8");
+#endif
#ifdef USE_SLANG
printf(" --with-slang");
#endif