]> git.wh0rd.org Git - nano.git/commitdiff
2009-12-07 David Lawrence Ramsey <pooka109@gmail.com>
authorChris Allegretta <chrisa@asty.org>
Wed, 9 Dec 2009 17:09:37 +0000 (17:09 +0000)
committerChris Allegretta <chrisa@asty.org>
Wed, 9 Dec 2009 17:09:37 +0000 (17:09 +0000)
        * global.c (shortcut_init), browser.c (do_browser): Fix M-W not being bound to
          research in either main menu or browser.

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

ChangeLog
src/browser.c
src/global.c

index 721eeb4b35d254bb6bacf921341f1d317fc73f75..ae3ff1f3d0e3fc65aa4fbfbe4806565faf680622 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-12-07 David Lawrence Ramsey <pooka109@gmail.com>
+       * global.c (shortcut_init), browser.c (do_browser): Fix M-W not being bound to 
+         research in either main menu or browser.
+
 2009-12-09 Chris Allegretta <chrisa@asty.org>
        * files.c (read_file) - Add parameter for whether we should even try to check
          file writability, as the message is useless when we're inserting into an 
index fca72e3c04595e97b1e302415580c3890eea762a..029aad700bb05e2c67987ef9a98c4d0a5aacd450 100644 (file)
@@ -184,7 +184,7 @@ char *do_browser(char *path, DIR *dir)
                do_filesearch();
                curs_set(0);
            /* Search for another filename. */
-       } else if (f->scfunc ==  WHEREIS_NEXT_MSG) {
+       } else if (f->scfunc == DO_RESEARCH) {
                do_fileresearch();
        } else if (f->scfunc == DO_PAGE_UP) {
                if (selected >= (editwinrows + fileline % editwinrows) *
index 74260b0ed5d6b952903aaec5d5a97152607eae02..ad5c191755e50485a2ea69270129bc56039c8ec0 100644 (file)
@@ -1062,8 +1062,8 @@ void shortcut_init(bool unjustify)
     add_to_sclist(MMAIN, "^^", DO_MARK, 0, TRUE);
     add_to_sclist(MMAIN, "F15", DO_MARK, 0, TRUE);
     add_to_sclist(MMAIN, "M-A", DO_MARK, 0, TRUE);
-    add_to_sclist(MALL, "M-W", DO_RESEARCH, 0, TRUE);
-    add_to_sclist(MALL, "F16", DO_RESEARCH, 0, TRUE);
+    add_to_sclist(MMAIN|MBROWSER, "M-W", DO_RESEARCH, 0, TRUE);
+    add_to_sclist(MMAIN|MBROWSER, "F16", DO_RESEARCH, 0, TRUE);
     add_to_sclist(MMAIN, "M-^", DO_COPY_TEXT, 0, TRUE);
     add_to_sclist(MMAIN, "M-6", DO_COPY_TEXT, 0, TRUE);
     add_to_sclist(MMAIN, "M-}", DO_INDENT_VOID, 0, TRUE);