]> git.wh0rd.org Git - nano.git/commitdiff
in toggle_init(), make sure that a blank line is not displayed after the
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 25 Jul 2006 22:24:48 +0000 (22:24 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 25 Jul 2006 22:24:48 +0000 (22:24 +0000)
Meta-Q toggle when mouse support is disabled and we're in restricted
mode, and that it is displayed all other times

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

ChangeLog
src/global.c

index ed9a6be3fa326d61276f56b8a6242144d1eccb3a..e368b37bf1095555469e252bef4b57bb4631fc27 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -111,7 +111,13 @@ CVS code -
   shortcut_init(), sc_init_one()
        - Don't include blank_after when DISABLE_HELP is defined, as
          it's never used then. (DLR)
-  toggle_init(), toggle_init_one()
+  toggle_init()
+       - Don't include desc or blank_after when DISABLE_HELP is
+         defined, as neither are ever used then. (DLR)
+       - Make sure that a blank line is not displayed after the Meta-Q
+         toggle when mouse support is disabled and we're in restricted
+         mode, and that it is displayed all other times. (DLR)
+  toggle_init_one()
        - Don't include desc or blank_after when DISABLE_HELP is
          defined, as neither are ever used then. (DLR)
 - help.c:
index 1a62244bca54b9aeb822dc8b06a37f4aaeeb3623..8c686781da03229cad388e2867523de45d2342c2 100644 (file)
@@ -1338,12 +1338,12 @@ void toggle_init(void)
 #endif
 
     toggle_init_one(TOGGLE_TABSTOSPACES_KEY,
-#if defined(ENABLE_MULTIBUFFER) || !defined(DISABLE_MOUSE)
+#ifndef DISABLE_MOUSE
+       IFTHELP(N_("Conversion of typed tabs to spaces"), TRUE,
+       TABS_TO_SPACES)
+#else
        IFTHELP(N_("Conversion of typed tabs to spaces"),
        !ISSET(RESTRICTED) ? TRUE : FALSE, TABS_TO_SPACES)
-#else
-       IFTHELP(N_("Conversion of typed tabs to spaces"), FALSE,
-       TABS_TO_SPACES)
 #endif
        );