in configure.ac, clarify description of --disable-speller
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3208 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
853a44d3f0
commit
708de360dc
|
@ -217,6 +217,8 @@ CVS code -
|
||||||
do_yesno()
|
do_yesno()
|
||||||
- Make mouse clicks on the Yes/No/All shortcuts work properly
|
- Make mouse clicks on the Yes/No/All shortcuts work properly
|
||||||
when the MORE_SPACE flag is set. (DLR)
|
when the MORE_SPACE flag is set. (DLR)
|
||||||
|
- configure.ac:
|
||||||
|
- Clarify description of --disable-speller. (DLR)
|
||||||
- README.CVS:
|
- README.CVS:
|
||||||
- Mention that the minimum required version of texinfo is 4.0,
|
- Mention that the minimum required version of texinfo is 4.0,
|
||||||
since that's the first version that supports generating HTML.
|
since that's the first version that supports generating HTML.
|
||||||
|
|
|
@ -93,7 +93,7 @@ AC_ARG_ENABLE(tiny,
|
||||||
AC_DEFINE(DISABLE_JUSTIFY, 1, [Define this to disable the justify routine.])
|
AC_DEFINE(DISABLE_JUSTIFY, 1, [Define this to disable the justify routine.])
|
||||||
AC_DEFINE(DISABLE_MOUSE, 1, [Define this to disable the mouse functions.])
|
AC_DEFINE(DISABLE_MOUSE, 1, [Define this to disable the mouse functions.])
|
||||||
AC_DEFINE(DISABLE_OPERATINGDIR, 1, [Define this to disable setting of the operating directory (chroot of sorts).])
|
AC_DEFINE(DISABLE_OPERATINGDIR, 1, [Define this to disable setting of the operating directory (chroot of sorts).])
|
||||||
AC_DEFINE(DISABLE_SPELLER, 1, [Define this to disable the use(full|less) spelling functions.])
|
AC_DEFINE(DISABLE_SPELLER, 1, [Define this to disable the spell checker functions.])
|
||||||
AC_DEFINE(DISABLE_TABCOMP, 1, [Define to disable the tab completion code Chris worked so hard on!])
|
AC_DEFINE(DISABLE_TABCOMP, 1, [Define to disable the tab completion code Chris worked so hard on!])
|
||||||
fi])
|
fi])
|
||||||
|
|
||||||
|
@ -128,9 +128,9 @@ AC_ARG_ENABLE(operatingdir,
|
||||||
fi])
|
fi])
|
||||||
|
|
||||||
AC_ARG_ENABLE(speller,
|
AC_ARG_ENABLE(speller,
|
||||||
[ --disable-speller Disable spell checker function],
|
[ --disable-speller Disable spell checker functions],
|
||||||
[if test x$enableval != xyes; then
|
[if test x$enableval != xyes; then
|
||||||
AC_DEFINE(DISABLE_SPELLER, 1, [Define this to disable the use(full|less) spelling functions.])
|
AC_DEFINE(DISABLE_SPELLER, 1, [Define this to disable the spell checker functions.])
|
||||||
fi])
|
fi])
|
||||||
|
|
||||||
AC_ARG_ENABLE(tabcomp,
|
AC_ARG_ENABLE(tabcomp,
|
||||||
|
|
Loading…
Reference in New Issue