# HG changeset patch # User Bram Moolenaar # Date 1339016918 -7200 # Node ID 4f4db5d661c4fae42f2d917c09549d58a2f4d05f # Parent 552a962b9dd65c5f20157ca8657674c7e06882a4 updated for version 7.3.547 Problem: Compiler warning for uninitialized variable. Solution: Initialize it. diff --git a/src/ops.c b/src/ops.c --- a/src/ops.c +++ b/src/ops.c @@ -4306,7 +4306,7 @@ do_join(count, insert_space, save_undo, colnr_T col = 0; int ret = OK; #if defined(FEAT_COMMENTS) || defined(PROTO) - int *comments; + int *comments = NULL; int remove_comments = (use_formatoptions == TRUE) && has_format_option(FO_REMOVE_COMS); int prev_was_comment; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 547, +/**/ 546, /**/ 545,