shortcut-handling code to deal with this. These changes allow
NANO_OPEN(PREV|NEXT)_ALTKEY to work properly when added to the
shortcut entries for NANO_OPEN(PREV|NEXT)_KEY. Also remove
- the values in the shortcut list that were made redundant by
- the low-level input overhaul, use toupper() instead of
- subtracting 32 from values for greater code readability, and
- eliminate use of adding 32 to values when testing for toggles,
- as get_kbinput_accepted() converts toggle values to lowercase
- before returning them. (DLR)
+ the values in the shortcut list and elsewhere that were made
+ redundant by the low-level input overhaul, use toupper()
+ instead of subtracting 32 from values for greater code
+ readability, and eliminate use of adding 32 to values when
+ testing for toggles, as get_kbinput_accepted() converts toggle
+ values to lowercase before returning them. (DLR)
- Hook up the verbatim input functions so that verbatim input
can be used in the edit window. New function
do_verbatim_input(); changes to do_char(). (DLR) Additional