summaryrefslogtreecommitdiff
path: root/src/tag.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-03-30 13:53:47 +0100
committerBram Moolenaar <Bram@vim.org>2019-03-30 13:53:47 +0100
commit7591bb39d58ece38a5fef984a08ea9012616c1f9 (patch)
treee5e5b82ffd29f4f922ebfb5a97ea12a8b3624b7c /src/tag.c
parentde5b3800427328170574f1950ae75776e020f4e7 (diff)
downloadvim-git-7591bb39d58ece38a5fef984a08ea9012616c1f9.tar.gz
patch 8.1.1076: file for Insert mode is much too bigv8.1.1076
Problem: File for Insert mode is much too big. Solution: Split off the code for Insert completion. (Yegappan Lakshmanan, closes #4044)
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag.c b/src/tag.c
index 9e270a29e..950ab8d95 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