nano.c:version() - Move up check for --disable-nls as it's independent of --enable-tiny now (DLR)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1370 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
f9ab3f79e5
commit
e6600379c9
|
@ -156,6 +156,8 @@ Changes
|
||||||
Pico's behavior. (DLR)
|
Pico's behavior. (DLR)
|
||||||
version()
|
version()
|
||||||
- Remove obsolete reference to --enable-undo. (David Benbennick)
|
- Remove obsolete reference to --enable-undo. (David Benbennick)
|
||||||
|
- Move up check for --disable-nls as it's independent of
|
||||||
|
--enable-tiny now (DLR).
|
||||||
do_int_speller()
|
do_int_speller()
|
||||||
- Make internal spell program use sort -f and uniq to create a less
|
- Make internal spell program use sort -f and uniq to create a less
|
||||||
redundant word list. [The only reason this is going in during
|
redundant word list. [The only reason this is going in during
|
||||||
|
|
6
nano.c
6
nano.c
|
@ -694,6 +694,9 @@ void version(void)
|
||||||
(" Email: nano@nano-editor.org Web: http://www.nano-editor.org/"));
|
(" Email: nano@nano-editor.org Web: http://www.nano-editor.org/"));
|
||||||
printf(_("\n Compiled options:"));
|
printf(_("\n Compiled options:"));
|
||||||
|
|
||||||
|
#ifndef ENABLE_NLS
|
||||||
|
printf(" --disable-nls");
|
||||||
|
#endif
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
printf(" --enable-debug");
|
printf(" --enable-debug");
|
||||||
#endif
|
#endif
|
||||||
|
@ -715,9 +718,6 @@ void version(void)
|
||||||
#if defined(DISABLE_MOUSE) || !defined(NCURSES_MOUSE_VERSION)
|
#if defined(DISABLE_MOUSE) || !defined(NCURSES_MOUSE_VERSION)
|
||||||
printf(" --disable-mouse");
|
printf(" --disable-mouse");
|
||||||
#endif
|
#endif
|
||||||
#ifndef ENABLE_NLS
|
|
||||||
printf(" --disable-nls");
|
|
||||||
#endif
|
|
||||||
#ifdef DISABLE_OPERATINGDIR
|
#ifdef DISABLE_OPERATINGDIR
|
||||||
printf(" --disable-operatingdir");
|
printf(" --disable-operatingdir");
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue