From 977fd0b327ed46a71c80d2cd62cbe149d43b9a69 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 27 Oct 2020 09:12:45 +0100 Subject: [PATCH] patch 8.2.1911: tiny build fails Problem: Tiny build fails. Solution: Add #ifdef. --- src/insexpand.c | 3 ++- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) 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) diff --git a/src/version.c b/src/version.c index 04bfc7db8..21370004a 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1911, /**/ 1910, /**/ -- 2.50.1