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
index e75fddb..eb34c8b 100644
--- a/src/term.c
+++ b/src/term.c
@@ -4538,7 +4538,13 @@
// 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.