Commit 5b17ef85 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

revert erroneous change

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3830 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 3714e07d
Showing with 0 additions and 8 deletions
+0 -8
......@@ -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)
......
......@@ -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
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment