diff --git a/ChangeLog b/ChangeLog index 2b16539f..6adb990a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -169,8 +169,6 @@ CVS code - - If they're defined, translate KEY_SUP into NANO_PREVLINE_KEY and KEY_SDOWN into NANO_NEXTLINE_KEY, since they are sometimes generated by Shift-Up and Shift-Down. (DLR) - - Translate KEY_EVENT to ERR if we get it, so that it's properly - ignored. (DLR) parse_escape_seq_kbinput() - Handle unknown and unignored escape sequences once here instead of twice in parse_kbinput(). (DLR) diff --git a/src/winio.c b/src/winio.c index 5a9de072..06328a2a 100644 --- a/src/winio.c +++ b/src/winio.c @@ -650,12 +650,6 @@ int parse_kbinput(WINDOW *win, bool *meta_key, bool *func_key) case KEY_RESIZE: retval = ERR; break; -#endif -#ifdef KEY_EVENT - /* Slang doesn't support KEY_EVENT. */ - case KEY_EVENT: - retval = ERR; - break; #endif }