summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/getchar.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/getchar.c b/src/getchar.c
index fee9191ba0..51faa2382c 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -2356,7 +2356,7 @@ check_simplify_modifier(int max_offset)
if (offset + 3 >= typebuf.tb_len)
break;
tp = typebuf.tb_buf + typebuf.tb_off + offset;
- if (tp[0] == K_SPECIAL && tp[1] == KS_MODIFIER)
+ if ((tp[0] == K_SPECIAL || tp[0] == CSI) && tp[1] == KS_MODIFIER)
{
// A modifier was not used for a mapping, apply it to ASCII keys.
// Shift would already have been applied.
diff --git a/src/version.c b/src/version.c
index 181417f14c..3df00f899f 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 385,
+/**/
384,
/**/
383,