]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.1279 v7.3.1279
authorBram Moolenaar <Bram@vim.org>
Sun, 30 Jun 2013 20:43:27 +0000 (22:43 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 30 Jun 2013 20:43:27 +0000 (22:43 +0200)
Problem:    Compiler warning for variable uninitialized. (Tony Mechelynck)
Solution:   Add an init.

src/ex_getln.c
src/version.c

index 11571d19463b76ba4f7a3498ede32013402622e4..cdd59def884be8270ee68d850758fae07fe6a1f5 100644 (file)
@@ -4951,7 +4951,7 @@ call_user_expand_func(user_expand_func, xp, num_file, file)
     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;
index 077c2a430b2fde91aa95b2804236fda526563c22..825f0abf1497a9defe9225f70e4a230f87e59ffc 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1279,
 /**/
     1278,
 /**/