# HG changeset patch # User Bram Moolenaar # Date 1592059504 -7200 # Node ID 020aec2e8de9497eac05a2824ceec3528ba70b95 # Parent d1a69628878a9de9f1d33ac79374ab8082214b55 patch 8.2.0971: build with tiny features fails Commit: https://github.com/vim/vim/commit/142499de3352e1edb2ab6cc2bf3b82441c8e5f4f Author: Bram Moolenaar Date: Sat Jun 13 16:39:31 2020 +0200 patch 8.2.0971: build with tiny features fails Problem: Build with tiny features fails. Solution: Add #ifdef. diff --git a/src/term.c b/src/term.c --- a/src/term.c +++ b/src/term.c @@ -4538,7 +4538,13 @@ handle_version_response(int first, int * // Reset terminal properties that are set based on the termresponse. // Mainly useful for tests that send the termresponse multiple times. // For testing all props can be reset. - init_term_props(reset_term_props_on_termresponse); + init_term_props( +#ifdef FEAT_EVAL + reset_term_props_on_termresponse +#else + FALSE +#endif + ); // If this code starts with CSI, you can bet that the // terminal uses 8-bit codes. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 971, +/**/ 970, /**/ 969,