do_scroll_down(), do_input(), do_search(), do_research(), and
do_delete(). (DLR)
- Ignore unhandled meta key sequences, function keys, and escape
- sequences, and indicate it on the statusbar when we get an
- unhandled shortcut or toggle, as Pico does. To get this to
+ sequences, indicate it on the statusbar, and beep when we get
+ an unhandled shortcut or toggle, as Pico does. To get this to
work properly, add a shortcut for moving to the next
search/replace string. New function is_ascii_cntrl_char();
changes to shortcut_init(), do_input(), do_statusbar_input(),
/* If the escape sequence is unrecognized and not ignored, throw it
* out, and indicate this on the statusbar. */
- if (retval == ERR && !ignore_seq)
+ if (retval == ERR && !ignore_seq) {
statusbar(_("Unknown Command"));
+ beep();
+ }
free(seq);