]> git.wh0rd.org Git - nano.git/commitdiff
revert erroneous change
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 31 Jul 2006 23:28:27 +0000 (23:28 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 31 Jul 2006 23:28:27 +0000 (23:28 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3830 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/winio.c

index 2b16539f3c81f368ff04a54ba82512aa94166275..6adb990a0c6406fb5edd68ea488a5af49879c083 100644 (file)
--- 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)
index 5a9de0726c3c77b97546b40716d1867dd991a2c8..06328a2a454bcfe296226090de592f3771a75803 100644 (file)
@@ -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
        }