* key.c (mc_bindings) [linux]: Remove old hack - recognizing

"e[2~" on all terminals.
This commit is contained in:
Pavel Roskin 2001-08-17 04:41:31 +00:00
parent 2e235dc19c
commit 4cac4d66ba
2 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2001-08-17 Pavel Roskin <proski@gnu.org>
* key.c (mc_bindings) [linux]: Remove old hack - recognizing
"\e[2~" on all terminals.
2001-08-16 Pavel Roskin <proski@gnu.org>
* charsets.c (load_codepages_list): Print a warning if

View File

@ -180,11 +180,6 @@ typedef struct {
static key_define_t mc_bindings [] = {
{ KEY_END, ESC_STR ">", MCKEY_NOACTION },
{ KEY_HOME, ESC_STR "<", MCKEY_NOACTION },
#ifdef linux
/* Incredible, but many Linuxes still have old databases */
{ KEY_IC, ESC_STR "[2~", MCKEY_NOACTION },
#endif
{ 0, 0, MCKEY_NOACTION },
};