]> git.wh0rd.org Git - nano.git/commitdiff
in configure.ac, disable wrapping entirely when --enable-tiny is used,
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 29 Nov 2005 04:17:53 +0000 (04:17 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 29 Nov 2005 04:17:53 +0000 (04:17 +0000)
as it matches the FAQ, it makes nano even smaller, and it eliminates the
need for --disable-wrapping-as-root in that case (in which it's
impossible to turn wrapping back on without nanorc support)

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3217 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
configure.ac

index 626ce0b14cd4facd521ada1b5d51589aa20d600a..78e59fb16d4effcb5900216fc948216366c7e8b4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -235,6 +235,11 @@ CVS code -
          when the MORE_SPACE flag is set. (DLR)
 - configure.ac:
        - Clarify description of --disable-speller. (DLR)
+       - Disable wrapping entirely when --enable-tiny is used, as it
+         matches the FAQ, it makes nano even smaller, and it eliminates
+         the need for --disable-wrapping-as-root in that case (in which
+         it's impossible to turn wrapping back on without nanorc
+         support). (DLR)
 - README.CVS:
        - Mention that the minimum required version of texinfo is 4.0,
          since that's the first version that supports generating HTML.
index cd5b28a1b8322ddf2c2af4eaad6bffa5dd8a5131..023807e625651cba1ca4bb96efc8c92d356d84c8 100644 (file)
@@ -95,6 +95,7 @@ AC_ARG_ENABLE(tiny,
     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 spell checker functions.])
     AC_DEFINE(DISABLE_TABCOMP, 1, [Define to disable the tab completion code Chris worked so hard on!])
+    AC_DEFINE(DISABLE_WRAPPING, 1, [Define this to disable any and all text wrapping.])
 fi])
 
 AC_ARG_ENABLE(browser,