changeset 5072:cca600e60928 v7.3.1279

updated for version 7.3.1279 Problem: Compiler warning for variable uninitialized. (Tony Mechelynck) Solution: Add an init.
author Bram Moolenaar <bram@vim.org>
date Sun, 30 Jun 2013 22:43:27 +0200
parents 1ad9383d56d5
children e53f245dec88
files src/ex_getln.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -4951,7 +4951,7 @@ call_user_expand_func(user_expand_func, 
     int		*num_file;
     char_u	***file;
 {
-    char_u	keep;
+    int		keep = 0;
     char_u	num[50];
     char_u	*args[3];
     int		save_current_SID = current_SID;
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1279,
+/**/
     1278,
 /**/
     1277,