diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-06-13 16:39:31 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-06-13 16:39:31 +0200 |
commit | 142499de3352e1edb2ab6cc2bf3b82441c8e5f4f (patch) | |
tree | 62964efabbe56d1c73e226c165b4a8c7ec5ec983 /src/term.c | |
parent | 0c0eddd3ddd266bcc2036362fae7b2b8b9d2c7bf (diff) | |
download | vim-git-142499de3352e1edb2ab6cc2bf3b82441c8e5f4f.tar.gz |
patch 8.2.0971: build with tiny features failsv8.2.0971
Problem: Build with tiny features fails.
Solution: Add #ifdef.
Diffstat (limited to 'src/term.c')
-rw-r--r-- | src/term.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c index e75fddb23..eb34c8b7a 100644 --- a/src/term.c +++ b/src/term.c @@ -4538,7 +4538,13 @@ handle_version_response(int first, int *arg, int argc, char_u *tp) // 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. |