diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-04 21:55:31 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-04 21:55:31 +0000 |
commit | 87b5ca5172eb9e61f72f54f598d6d2ad646a8a76 (patch) | |
tree | 3d83af536ded8a5be657f757be1324595f672780 /src/edit.c | |
parent | 36fc535cb1353786d7edacfea1cd3ececaf6cf5d (diff) | |
download | vim-git-87b5ca5172eb9e61f72f54f598d6d2ad646a8a76.tar.gz |
updated for version 7.0214
Diffstat (limited to 'src/edit.c')
-rw-r--r-- | src/edit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/edit.c b/src/edit.c index 5809df1bb..3ad12a7a6 100644 --- a/src/edit.c +++ b/src/edit.c @@ -2596,7 +2596,8 @@ ins_compl_dictionaries(dict_start, pat, flags, thesaurus) if (count == -1) { - /* Skip "\<" in the pattern, we don't use it as a RE. */ + /* Complete from active spelling. Skip "\<" in the pattern, we + * don't use it as a RE. */ if (pat[0] == '\\' && pat[1] == '<') ptr = pat + 2; else |