Show --enable-multibuffer independently of --enable-extra.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1015 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Jordi Mallach 2002-01-17 12:40:33 +00:00
parent 78aad94851
commit 5285ca9d0a
2 changed files with 5 additions and 4 deletions

View File

@ -23,6 +23,9 @@ CVS code -
do_wrap()
- Move "right" increment to part where new line is created,
should change (fix?) some wrapping problems with autoindent.
version()
- Show --enable-multibuffer independently of --enable-extra being
compiled in (Jordi).
- global.c:
shorcut_init()
- Replace hard coded ALT_G and ALT_H values in the replace

6
nano.c
View File

@ -552,12 +552,10 @@ void version(void)
#ifdef NANO_EXTRA
printf(" --enable-extra");
#else
#endif
#ifdef ENABLE_MULTIBUFFER
printf(" --enable-multibuffer");
#endif /* ENABLE_MULTIBUFFER */
#endif /* NANO_EXTRA */
#endif
#ifdef ENABLE_NANORC
printf(" --enable-nanorc");
#endif