From ba43e76fcd5b2da57dbaa4d9a555793fe8ac344e Mon Sep 17 00:00:00 2001 From: Martin Tournoij Date: Thu, 13 Oct 2022 22:12:15 +0100 Subject: patch 9.0.0747: too many #ifdefs Problem: Too many #ifdefs. Solution: Gradudate the +cmdline_info feature. (Martin Tournoij, closes #11330) --- src/spellsuggest.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/spellsuggest.c') diff --git a/src/spellsuggest.c b/src/spellsuggest.c index cc70ca736..97e89985b 100644 --- a/src/spellsuggest.c +++ b/src/spellsuggest.c @@ -702,9 +702,11 @@ spell_suggest(int count) curwin->w_cursor.col = c; changed_bytes(curwin->w_cursor.lnum, c); +#if defined(FEAT_PROP_POPUP) if (curbuf->b_has_textprop && len_diff != 0) adjust_prop_columns(curwin->w_cursor.lnum, c, len_diff, APC_SUBSTITUTE); +#endif } } else -- cgit v1.2.1