]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.283 v7.4.283
authorBram Moolenaar <Bram@vim.org>
Fri, 9 May 2014 18:33:04 +0000 (20:33 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 9 May 2014 18:33:04 +0000 (20:33 +0200)
Problem:    Compiler warning about unused variable. (Charles Cooper)
Solution:   Move the variable inside the #if block.

src/ex_cmds.c
src/version.c

index 39f6791b6473c2dcd81cf1f22544efbfc16bf362..f52e2abcd56877400591cf8f0f3c5d2ff145c9ee 100644 (file)
@@ -1551,9 +1551,10 @@ make_filter_cmd(cmd, itmp, otmp)
 {
     char_u     *buf;
     long_u     len;
-    int                is_fish_shell;
 
 #if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2)
+    int                is_fish_shell;
+
     /* Account for fish's different syntax for subshells */
     is_fish_shell = (fnamecmp(get_isolated_shell_name(), "fish") == 0);
     if (is_fish_shell)
index fb0689bf8a09882cbdb19a2b0209434dab0a3472..ae03814dfb2cbd7a4524e894e62697ae804a403c 100644 (file)
@@ -734,6 +734,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    283,
 /**/
     282,
 /**/