]> git.wh0rd.org Git - nano.git/commitdiff
Paragraph jumping only makes sense in the MAIN editing menu,
authorBenno Schulenberg <bensberg@justemail.net>
Sat, 3 May 2014 20:27:25 +0000 (20:27 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Sat, 3 May 2014 20:27:25 +0000 (20:27 +0000)
thus removing the shortcuts from all others.

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

ChangeLog
src/global.c

index 2f5d8f8bebb99c8bf16c6c59871777c193bb0302..55102822e82bef1c1e183ff46b46f17b64780688 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,8 @@
        the same manner as in the help lines, and group them per menu.
        * src/global.c (shortcut_init): Remove the search-mode toggles
        from the inappropriate WHEREISFILE and REPLACEWITH menus.
+       * src/global.c (shortcut_init): Paragraph jumping only makes
+       sense in the main editing menu; remove it from all others.
 
 2014-04-30  Benno Schulenberg  <bensberg@justemail.net>
        * src/*, doc/*: Update the years in the copyright notices -- there
index 45ec050d33ee282aee0d76ce8ac0a6116c915854..20125d7a4c055092f82f8fff2aaa3e78f301acab 100644 (file)
@@ -1061,10 +1061,10 @@ void shortcut_init(void)
     add_to_sclist(MMAIN|MHELP|MBROWSER, "^N", do_down_void, 0, TRUE);
     add_to_sclist(MMAIN|MHELP|MBROWSER, "Down", do_down_void, 0, TRUE);
 #ifndef DISABLE_JUSTIFY
-    add_to_sclist(MMOST, "M-(", do_para_begin_void, 0, TRUE);
-    add_to_sclist(MMOST, "M-9", do_para_begin_void, 0, TRUE);
-    add_to_sclist(MMOST, "M-)", do_para_end_void, 0, TRUE);
-    add_to_sclist(MMOST, "M-0", do_para_end_void, 0, TRUE);
+    add_to_sclist(MMAIN, "M-(", do_para_begin_void, 0, TRUE);
+    add_to_sclist(MMAIN, "M-9", do_para_begin_void, 0, TRUE);
+    add_to_sclist(MMAIN, "M-)", do_para_end_void, 0, TRUE);
+    add_to_sclist(MMAIN, "M-0", do_para_end_void, 0, TRUE);
 #endif
 #ifndef NANO_TINY
     add_to_sclist(MMAIN, "M--", do_scroll_up, 0, TRUE);