forked from aniani/vim
updated for version 7.3.182
Problem: Compiler warning for uninitialized variable. Solution: Add dummy initializer.
This commit is contained in:
@@ -1563,7 +1563,7 @@ get_leader_len(line, flags, backward)
|
|||||||
char_u *list;
|
char_u *list;
|
||||||
int middle_match_len = 0;
|
int middle_match_len = 0;
|
||||||
char_u *prev_list;
|
char_u *prev_list;
|
||||||
char_u *saved_flags;
|
char_u *saved_flags = NULL;
|
||||||
|
|
||||||
i = 0;
|
i = 0;
|
||||||
while (vim_iswhite(line[i])) /* leading white space is ignored */
|
while (vim_iswhite(line[i])) /* leading white space is ignored */
|
||||||
|
@@ -714,6 +714,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
182,
|
||||||
/**/
|
/**/
|
||||||
181,
|
181,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user