mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.3.547
Problem: Compiler warning for uninitialized variable. Solution: Initialize it.
This commit is contained in:
@@ -4306,7 +4306,7 @@ do_join(count, insert_space, save_undo, use_formatoptions)
|
|||||||
colnr_T col = 0;
|
colnr_T col = 0;
|
||||||
int ret = OK;
|
int ret = OK;
|
||||||
#if defined(FEAT_COMMENTS) || defined(PROTO)
|
#if defined(FEAT_COMMENTS) || defined(PROTO)
|
||||||
int *comments;
|
int *comments = NULL;
|
||||||
int remove_comments = (use_formatoptions == TRUE)
|
int remove_comments = (use_formatoptions == TRUE)
|
||||||
&& has_format_option(FO_REMOVE_COMS);
|
&& has_format_option(FO_REMOVE_COMS);
|
||||||
int prev_was_comment;
|
int prev_was_comment;
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
547,
|
||||||
/**/
|
/**/
|
||||||
546,
|
546,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user