summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/edit.c b/src/edit.c
index 5159a34fce..da15010f5d 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -4497,6 +4497,8 @@ ins_complete(c)
if (compl_col >= (colnr_T)startcol)
return FAIL;
spell_expand_check_cap(compl_col);
+ /* Need to obtain "line" again, it may have become invalid. */
+ line = ml_get(curwin->w_cursor.lnum);
compl_length = (int)curs_col - compl_col;
compl_pattern = vim_strnsave(line + compl_col, compl_length);
if (compl_pattern == NULL)