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:
#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
);