]> git.wh0rd.org Git - nano.git/commitdiff
Making tiny nano again just a tiny bit tinier.
authorBenno Schulenberg <bensberg@justemail.net>
Wed, 28 May 2014 20:31:06 +0000 (20:31 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Wed, 28 May 2014 20:31:06 +0000 (20:31 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4927 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/global.c

index b3f4f994671623169174c5479403663648cc6d72..2eea21de18f05a6167886f5135b96393a664a0cd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,7 @@
        * src/browser (filesearch_init): Remove an unneeded format specifier.
        * src/nano.c (usage): Add a translator comment for the --help output.
        * src/global.c (shortcut_init): Elide four unneeded tags.
+       * src/global.c (shortcut_init): Make tiny nano just a bit tinier.
 
 2014-05-27  Chris Allegretta <chrisa@asty.org>
        * src/winio.c (edit_refresh): wredrawln() is not supported under
index 7fa8e63c3430ffd598bf00762be976ecfab1df9a..c4ea87bec401074df88f21d87374333a28a0e252 100644 (file)
@@ -494,12 +494,12 @@ void shortcut_init(void)
 #endif
     const char *refresh_tag = N_("Refresh");
 
+#ifndef DISABLE_HELP
 #ifndef DISABLE_JUSTIFY
     /* TRANSLATORS: The next long series of strings are shortcut descriptions;
      * they are best kept shorter than 56 characters, but may be longer. */
     const char *nano_justify_msg = N_("Justify the current paragraph");
 #endif
-#ifndef DISABLE_HELP
     const char *nano_cancel_msg = N_("Cancel the current function");
     const char *nano_help_msg = N_("Display this help text");
     const char *nano_exit_msg =
@@ -1120,9 +1120,11 @@ void shortcut_init(void)
 
     add_to_sclist(((MMOST & ~MMAIN & ~MBROWSER) | MYESNO), "^C", do_cancel, 0, FALSE);
 
+#ifndef NANO_TINY
+    add_to_sclist(MWHEREIS|MREPLACE, "M-B", backwards_void, 0, FALSE);
     add_to_sclist(MWHEREIS|MREPLACE, "M-C", case_sens_void, 0, FALSE);
+#endif
     add_to_sclist(MWHEREIS|MREPLACE, "M-R", regexp_void, 0, FALSE);
-    add_to_sclist(MWHEREIS|MREPLACE, "M-B", backwards_void, 0, FALSE);
     add_to_sclist(MWHEREIS, "^R", do_replace, 0, FALSE);
     add_to_sclist(MREPLACE, "^R", no_replace_void, 0, FALSE);
     add_to_sclist(MWHEREIS|MREPLACE|MREPLACEWITH|MGOTOLINE, "^Y", do_first_line, 0, TRUE);
@@ -1159,7 +1161,9 @@ void shortcut_init(void)
     add_to_sclist(MINSERTFILE|MEXTCMD, "^X", ext_cmd_void, 0, FALSE);
     add_to_sclist(MINSERTFILE|MEXTCMD, "M-F", new_buffer_void, 0, FALSE);
     add_to_sclist(MHELP|MBROWSER, "^C", do_exit, 0, TRUE);
+#ifndef DISABLE_HELP
     add_to_sclist(MHELP, "^G", do_exit, 0, TRUE);
+#endif
     add_to_sclist(MMOST, "^I", do_tab, 0, TRUE);
     add_to_sclist(MMOST, "^M", do_enter_void, 0, TRUE);
     add_to_sclist(MMOST, "Enter", do_enter_void, 0, TRUE);