diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-10-27 09:12:45 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-10-27 09:12:45 +0100 |
commit | 977fd0b327ed46a71c80d2cd62cbe149d43b9a69 (patch) | |
tree | 81b8a38b2aef447660e5d3a3512c43602c3a5e7c /src/insexpand.c | |
parent | caf73dcfade0a435ea3f989285b43f07c40c9948 (diff) | |
download | vim-git-977fd0b327ed46a71c80d2cd62cbe149d43b9a69.tar.gz |
patch 8.2.1911: tiny build failsv8.2.1911
Problem: Tiny build fails.
Solution: Add #ifdef.
Diffstat (limited to 'src/insexpand.c')
-rw-r--r-- | src/insexpand.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/insexpand.c b/src/insexpand.c index a0aa1024a..87aaf7d6b 100644 --- a/src/insexpand.c +++ b/src/insexpand.c @@ -4067,10 +4067,11 @@ ins_complete(int c, int enable_pum) } else { +#if defined(FEAT_COMPL_FUNC) || defined(FEAT_EVAL) // Update completion sequence number when needed. if (compl_curr_match->cp_number == -1) ins_compl_update_sequence_numbers(); - +#endif // The match should always have a sequence number now, this is // just a safety check. if (compl_curr_match->cp_number != -1) |