# HG changeset patch # User Bram Moolenaar # Date 1669986903 -3600 # Node ID 216c01bb1f90bdae50b03c9373d72f6091e42111 # Parent c5214be0259de6ff69cc585f9b6534605ae6b176 patch 9.0.0986: build failure with tiny version Commit: https://github.com/vim/vim/commit/5390c05a3ca712da8fc56b14517c99c740551c0b Author: Bram Moolenaar Date: Fri Dec 2 13:10:03 2022 +0000 patch 9.0.0986: build failure with tiny version Problem: Build failure with tiny version. Solution: Add #ifdef. diff --git a/src/term.c b/src/term.c --- 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 --- 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,