]> granicus.if.org Git - vim/commitdiff
patch 9.0.0986: build failure with tiny version v9.0.0986
authorBram Moolenaar <Bram@vim.org>
Fri, 2 Dec 2022 13:10:03 +0000 (13:10 +0000)
committerBram Moolenaar <Bram@vim.org>
Fri, 2 Dec 2022 13:10:03 +0000 (13:10 +0000)
Problem:    Build failure with tiny version.
Solution:   Add #ifdef.

src/term.c
src/version.c

index 19d4fa1892f3e8881659f735cd158beb476e2eae..3c9a2430940fdeb070ec267ff5e8aab61c4aeb66 100644 (file)
@@ -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;
        }
 
index c3fc0964837838bc97508f447d3b564d83c4cf18..23f1ac5f3cd32322769dfb7b02ff666fcd078c2a 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    986,
 /**/
     985,
 /**/