Skip to content

Commit

Permalink
patch 8.2.4267: unused entry in keymap enum
Browse files Browse the repository at this point in the history
Problem:    Unused entry in keymap enum.
Solution:   Remove the entry.
  • Loading branch information
brammool committed Jan 31, 2022
1 parent 5703310 commit 4c93aff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/keymap.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,7 @@
*/
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_F1 = 6 // shifted function keys
Expand Down Expand Up @@ -253,7 +251,8 @@ enum key_extra
, KE_CSI = 81 // CSI typed directly
, KE_SNR = 82 // <SNR>
, 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_RIGHT = 86 // control-right
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -750,6 +750,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
4267,
/**/
4266,
/**/
Expand Down

0 comments on commit 4c93aff

Please sign in to comment.