summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-12-02 13:10:03 +0000
committerBram Moolenaar <Bram@vim.org>2022-12-02 13:10:03 +0000
commit5390c05a3ca712da8fc56b14517c99c740551c0b (patch)
tree08d26cd90d4241cc4a3f11fcadb8ef7aace8124f
parent1a173409ae6a39d59ff99cf3d567c25e859f9ecd (diff)
downloadvim-git-9.0.0986.tar.gz
patch 9.0.0986: build failure with tiny versionv9.0.0986
Problem: Build failure with tiny version. Solution: Add #ifdef.
-rw-r--r--src/term.c4
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/term.c b/src/term.c
index 19d4fa189..3c9a24309 100644
--- a/src/term.c
+++ b/src/term.c
@@ -5156,7 +5156,9 @@ handle_key_with_modifier(
|| kitty_protocol_state == KKPS_AFTER_T_KE)
&& term_props[TPR_KITTY].tpr_status != TPR_YES)
{
+#ifdef FEAT_EVAL
ch_log(NULL, "setting seenModifyOtherKeys to TRUE");
+#endif
seenModifyOtherKeys = TRUE;
}
@@ -5435,7 +5437,9 @@ handle_csi(
// Reset seenModifyOtherKeys just in case some key combination has
// been seen that set it before we get the status response.
+#ifdef FEAT_EVAL
ch_log(NULL, "setting seenModifyOtherKeys to FALSE");
+#endif
seenModifyOtherKeys = FALSE;
}
diff --git a/src/version.c b/src/version.c
index c3fc09648..23f1ac5f3 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 986,
+/**/
985,
/**/
984,