1
0
forked from aniani/vim

updated for version 7.3.400

Problem:    Compiler warnings for shadowed variables.
Solution:   Remove or rename the variables.
This commit is contained in:
Bram Moolenaar
2012-01-10 22:26:17 +01:00
parent 1f5965b3c4
commit 70b2a56d5a
19 changed files with 167 additions and 162 deletions

View File

@@ -1353,7 +1353,6 @@ find_tags(pat, num_matches, matchesp, flags, mincount, buf_ffname)
int match_count = 0; /* number of matches found */
char_u **matches;
int mtt;
int len;
int help_save;
#ifdef FEAT_MULTI_LANG
int help_pri = 0;
@@ -2235,6 +2234,8 @@ line_read_in:
*/
if (ga_grow(&ga_match[mtt], 1) == OK)
{
int len;
if (help_only)
{
#ifdef FEAT_MULTI_LANG