From 7591bb39d58ece38a5fef984a08ea9012616c1f9 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 30 Mar 2019 13:53:47 +0100 Subject: patch 8.1.1076: file for Insert mode is much too big Problem: File for Insert mode is much too big. Solution: Split off the code for Insert completion. (Yegappan Lakshmanan, closes #4044) --- src/tag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tag.c') diff --git a/src/tag.c b/src/tag.c index 9e270a29ed..950ab8d95a 100644 --- a/src/tag.c +++ b/src/tag.c @@ -1591,7 +1591,7 @@ find_tags( #ifdef FEAT_INS_EXPAND if ((flags & TAG_INS_COMP)) /* Double brackets for gcc */ ins_compl_check_keys(30, FALSE); - if (got_int || compl_interrupted) + if (got_int || ins_compl_interrupted()) #else if (got_int) #endif -- cgit v1.2.3