0
0
mirror of https://github.com/vim/vim.git synced 2025-09-07 22:03:36 -04:00

updated for version 7.3.182

Problem:    Compiler warning for uninitialized variable.
Solution:   Add dummy initializer.
This commit is contained in:
Bram Moolenaar 2011-05-10 14:44:11 +02:00
parent 9c520cb544
commit 05da428462
2 changed files with 3 additions and 1 deletions

View File

@ -1563,7 +1563,7 @@ get_leader_len(line, flags, backward)
char_u *list;
int middle_match_len = 0;
char_u *prev_list;
char_u *saved_flags;
char_u *saved_flags = NULL;
i = 0;
while (vim_iswhite(line[i])) /* leading white space is ignored */

View File

@ -714,6 +714,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
182,
/**/
181,
/**/