Add DLR's --disable-nls to version info
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1307 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
d45c5992d3
commit
2a15c584f1
|
@ -24,6 +24,9 @@ CVS code -
|
||||||
and not just assigned to it, to avoid memory corruption
|
and not just assigned to it, to avoid memory corruption
|
||||||
problems. (DLR)
|
problems. (DLR)
|
||||||
- nano.c:
|
- nano.c:
|
||||||
|
version()
|
||||||
|
- If ENABLE_NLS isn't defined, display "--disable-nls"
|
||||||
|
(suggested by Ken Tyler). (DLR)
|
||||||
justify_format()
|
justify_format()
|
||||||
- Make sure the double space maintained after sentence-ending
|
- Make sure the double space maintained after sentence-ending
|
||||||
punctuation is done when that punctuation is immediately
|
punctuation is done when that punctuation is immediately
|
||||||
|
|
3
nano.c
3
nano.c
|
@ -709,6 +709,9 @@ void version(void)
|
||||||
#ifdef DISABLE_MOUSE
|
#ifdef DISABLE_MOUSE
|
||||||
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