summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2006-08-22 17:55:55 +0000
committervimboss <devnull@localhost>2006-08-22 17:55:55 +0000
commit36c18e1560293ea564b7e02be545f4644ef5d2bd (patch)
tree9cfbdb408be3d83072cd906d0d470a0aaa37f09b
parent7d00897534e67796e42d93e34b2472cab0db3657 (diff)
downloadvim-36c18e1560293ea564b7e02be545f4644ef5d2bd.tar.gz
updated for version 7.0-064v7.0.064v7-0-064
-rw-r--r--src/edit.c3
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/edit.c b/src/edit.c
index a8044151..fb347b85 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -2760,6 +2760,7 @@ ins_compl_dictionaries(dict_start, pat, flags, thesaurus)
}
else
# endif
+ if (count > 0) /* avoid warning for using "files" uninit */
{
ins_compl_files(count, files, thesaurus, flags,
&regmatch, buf, &dir);
@@ -3222,7 +3223,6 @@ ins_compl_prep(c)
int c;
{
char_u *ptr;
- int temp;
int want_cindent;
int retval = FALSE;
@@ -3378,6 +3378,7 @@ ins_compl_prep(c)
if (compl_curr_match != NULL || compl_leader != NULL || c == Ctrl_E)
{
char_u *p;
+ int temp = 0;
/*
* If any of the original typed text has been changed, eg when
diff --git a/src/version.c b/src/version.c
index 4851f897..a708d307 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 64,
+/**/
63,
/**/
62,