diff --git a/ChangeLog b/ChangeLog index 0d829ebbb1cc588c2e480b4ecda8fe17463dfbfa..59825ec5e0ae0ff03d92b60589ecaa08bb82aae8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,12 +12,12 @@ CVS code - 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 diff --git a/src/nano.c b/src/nano.c index 3457aa4734f0d7d7837472dfd42e98d15b799615..ef64e59ce9a9f04f13c7286793bd68e9ed4c172e 100644 --- a/src/nano.c +++ b/src/nano.c @@ -3609,7 +3609,6 @@ int main(int argc, char *argv[]) * have been handled before we * got here */ case NANO_CONTROL_5: /* Ctrl-] */ - case NANO_CONTROL_8: /* Ctrl-? (Delete) */ break; default: #ifdef DEBUG