+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
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) *
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);