summaryrefslogtreecommitdiff
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-02-20 21:37:40 +0000
committerBram Moolenaar <Bram@vim.org>2006-02-20 21:37:40 +0000
commitfaa959a8700219bd1726943cbb956001b5f737e4 (patch)
tree3cb74926336d18b833091edeb49c267ed5813394 /src/edit.c
parent70836c8ba83c180f978ed0ac92fb5ee78140a631 (diff)
downloadvim-git-faa959a8700219bd1726943cbb956001b5f737e4.tar.gz
updated for version 7.0202v7.0202
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/edit.c b/src/edit.c
index cb78cd62d..b57b56707 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -2845,7 +2845,7 @@ ins_compl_addfrommatch()
int c;
p = compl_shown_match->cp_str;
- if (STRLEN(p) <= len) /* the match is too short */
+ if ((int)STRLEN(p) <= len) /* the match is too short */
return;
p += len;
#ifdef FEAT_MBYTE