summaryrefslogtreecommitdiff
path: root/src/edit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/edit.c b/src/edit.c
index 9d359defa..4d5ee8559 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -1280,7 +1280,7 @@ doESCkey:
// but it is under other ^X modes
if (*curbuf->b_p_cpt == NUL
&& (ctrl_x_mode_normal() || ctrl_x_mode_whole_line())
- && !(compl_cont_status & CONT_LOCAL))
+ && !compl_status_local())
goto normalchar;
docomplete:
@@ -1289,7 +1289,7 @@ docomplete:
disable_fold_update++; // don't redraw folds here
#endif
if (ins_complete(c, TRUE) == FAIL)
- compl_cont_status = 0;
+ compl_status_clear();
#ifdef FEAT_FOLDING
disable_fold_update--;
#endif