1
0
forked from aniani/vim

patch 8.2.4267: unused entry in keymap enum

Problem:    Unused entry in keymap enum.
Solution:   Remove the entry.
This commit is contained in:
Bram Moolenaar 2022-01-31 11:29:51 +00:00
parent 5703310e64
commit 4c93aff20f
2 changed files with 5 additions and 4 deletions

View File

@ -150,9 +150,7 @@
*/ */
enum key_extra enum key_extra
{ {
KE_NAME = 3 // name of this terminal entry KE_S_UP = 4 // shift-up
, KE_S_UP = 4 // shift-up
, KE_S_DOWN = 5 // shift-down , KE_S_DOWN = 5 // shift-down
, KE_S_F1 = 6 // shifted function keys , KE_S_F1 = 6 // shifted function keys
@ -253,7 +251,8 @@ enum key_extra
, KE_CSI = 81 // CSI typed directly , KE_CSI = 81 // CSI typed directly
, KE_SNR = 82 // <SNR> , KE_SNR = 82 // <SNR>
, KE_PLUG = 83 // <Plug> , KE_PLUG = 83 // <Plug>
, KE_CMDWIN = 84 // open command-line window from Command-line Mode , KE_CMDWIN = 84 // open command-line window from Command-line
// Mode
, KE_C_LEFT = 85 // control-left , KE_C_LEFT = 85 // control-left
, KE_C_RIGHT = 86 // control-right , KE_C_RIGHT = 86 // control-right

View File

@ -750,6 +750,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
4267,
/**/ /**/
4266, 4266,
/**/ /**/