comparison src/tag.c @ 3263:320cc46d0eb0 v7.3.400

updated for version 7.3.400 Problem: Compiler warnings for shadowed variables. Solution: Remove or rename the variables.
author Bram Moolenaar <bram@vim.org>
date Tue, 10 Jan 2012 22:26:17 +0100
parents a1d2f741d45c
children a638ae0f1b0c
comparison
equal deleted inserted replaced
3262:373b8b5fee95 3263:320cc46d0eb0
1351 } *mfp, *mfp2; 1351 } *mfp, *mfp2;
1352 garray_T ga_match[MT_COUNT]; 1352 garray_T ga_match[MT_COUNT];
1353 int match_count = 0; /* number of matches found */ 1353 int match_count = 0; /* number of matches found */
1354 char_u **matches; 1354 char_u **matches;
1355 int mtt; 1355 int mtt;
1356 int len;
1357 int help_save; 1356 int help_save;
1358 #ifdef FEAT_MULTI_LANG 1357 #ifdef FEAT_MULTI_LANG
1359 int help_pri = 0; 1358 int help_pri = 0;
1360 char_u *help_lang_find = NULL; /* lang to be found */ 1359 char_u *help_lang_find = NULL; /* lang to be found */
1361 char_u help_lang[3]; /* lang of current tags file */ 1360 char_u help_lang[3]; /* lang of current tags file */
2233 * Store the info we need later, which depends on the kind of 2232 * Store the info we need later, which depends on the kind of
2234 * tags we are dealing with. 2233 * tags we are dealing with.
2235 */ 2234 */
2236 if (ga_grow(&ga_match[mtt], 1) == OK) 2235 if (ga_grow(&ga_match[mtt], 1) == OK)
2237 { 2236 {
2237 int len;
2238
2238 if (help_only) 2239 if (help_only)
2239 { 2240 {
2240 #ifdef FEAT_MULTI_LANG 2241 #ifdef FEAT_MULTI_LANG
2241 # define ML_EXTRA 3 2242 # define ML_EXTRA 3
2242 #else 2243 #else