]> git.wh0rd.org Git - nano.git/commitdiff
remove specific references to control key shortcuts in configure.ac
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 27 Nov 2004 21:39:01 +0000 (21:39 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 27 Nov 2004 21:39:01 +0000 (21:39 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2148 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
configure.ac

index 6be3279606f75336536e0c915126cafcfc7132db..10d13730e03c5c0d4c3f18ab68883f66e71eda3e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -69,6 +69,9 @@ CVS code -
          dynamically allocating it and then returning it. (DLR)
   get_shortcut(), get_toggle()
        - Add debug messages. (DLR)
+- configure.ac:
+       - Remove specific references to control key shortcuts. (DLR)
+
 
 GNU nano 1.3.5 - 2004.11.22
 - General:
index ad09e4a99feb5a633ab4ee77e61037bcfedd7956..e94695e66b65ffd0ee1c17d1cab0505bc9e518b4 100644 (file)
@@ -87,7 +87,7 @@ AC_ARG_ENABLE(tiny,
 [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_HELP, 1, [Define this to disable the ^G help menu.]) 
+    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.]) 
     AC_DEFINE(DISABLE_OPERATINGDIR, 1, [Define this to disable setting of the operating directory (chroot of sorts).]) 
@@ -102,9 +102,9 @@ AC_ARG_ENABLE(browser,
  fi])
 
 AC_ARG_ENABLE(help,
-[  --disable-help          Disable help function (^G)],
+[  --disable-help          Disable help function],
  [if test x$enableval != xyes; then
-    AC_DEFINE(DISABLE_HELP, 1, [Define this to disable the ^G help menu.])
+    AC_DEFINE(DISABLE_HELP, 1, [Define this to disable the help menu.])
  fi])
 
 AC_ARG_ENABLE(justify,