]> git.wh0rd.org Git - nano.git/commitdiff
in configure.ac, don't refer to the built-in file browser as crappy
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 3 Jun 2005 01:43:56 +0000 (01:43 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 3 Jun 2005 01:43:56 +0000 (01:43 +0000)
anymore

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

ChangeLog
configure.ac

index 2319c28cf98efc319869e2572c7d18695bf9f5ea..bb3c7743f30d4f56bf0eadbf9915415da58abec2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -155,6 +155,8 @@ CVS code -
        - Minor tweaks to some of the test blocks to avoid XSI:isms.
          (DLR, adapted from a Debian patch for GNU ed by David
          Weinehall)
+       - Don't refer to the built-in file browser as crappy anymore.
+         (DLR)
 - THANKS:
        - Add new translators to the credits.
 
index ff34477ecb80a73ad6a7102d77d557c66fafe434..d10581ebf0f3c32618c2a19715ae4c002bbf0f57 100644 (file)
@@ -85,7 +85,7 @@ AC_ARG_ENABLE(tiny,
 [  --enable-tiny           Disable features for the sake of size],
 [if test x$enableval = xyes; then
     AC_DEFINE(NANO_SMALL, 1, [Define this to make the nano executable as small as possible.]) tiny_support=yes
-    AC_DEFINE(DISABLE_BROWSER, 1, [Define this to disable the built-in (crappy) file browser.]) 
+    AC_DEFINE(DISABLE_BROWSER, 1, [Define this to disable the built-in file browser.]) 
     AC_DEFINE(DISABLE_HELP, 1, [Define this to disable the help menu.]) 
     AC_DEFINE(DISABLE_JUSTIFY, 1, [Define this to disable the justify routine.]) 
     AC_DEFINE(DISABLE_MOUSE, 1, [Define this to disable the mouse functions.]) 
@@ -97,7 +97,7 @@ fi])
 AC_ARG_ENABLE(browser,
 [  --disable-browser       Disable mini file browser],
 [if test x$enableval != xyes; then
-    AC_DEFINE(DISABLE_BROWSER, 1, [Define this to disable the built-in (crappy) file browser.])
+    AC_DEFINE(DISABLE_BROWSER, 1, [Define this to disable the built-in file browser.])
 fi])
 
 AC_ARG_ENABLE(help,