]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.163 v7.3.163
authorBram Moolenaar <Bram@vim.org>
Thu, 28 Apr 2011 10:57:36 +0000 (12:57 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 28 Apr 2011 10:57:36 +0000 (12:57 +0200)
Problem:    For the default of 'shellpipe' "mksh" and "pdksh" are not
            recognized.
Solution:   Recognize these shell names.

src/option.c
src/version.c

index b63346637a568cb9634a21877b0632101782dd5f..6e9b3db1a4f848d4cd728dd9c57510747461a7a1 100644 (file)
@@ -3846,6 +3846,8 @@ set_init_3()
 # ifndef OS2   /* Always use bourne shell style redirection if we reach this */
            if (       fnamecmp(p, "sh") == 0
                    || fnamecmp(p, "ksh") == 0
+                   || fnamecmp(p, "mksh") == 0
+                   || fnamecmp(p, "pdksh") == 0
                    || fnamecmp(p, "zsh") == 0
                    || fnamecmp(p, "zsh-beta") == 0
                    || fnamecmp(p, "bash") == 0
@@ -3853,6 +3855,8 @@ set_init_3()
                    || fnamecmp(p, "cmd") == 0
                    || fnamecmp(p, "sh.exe") == 0
                    || fnamecmp(p, "ksh.exe") == 0
+                   || fnamecmp(p, "mksh.exe") == 0
+                   || fnamecmp(p, "pdksh.exe") == 0
                    || fnamecmp(p, "zsh.exe") == 0
                    || fnamecmp(p, "zsh-beta.exe") == 0
                    || fnamecmp(p, "bash.exe") == 0
index 5b681a02906685e55f1ba83c81a6a92ab320479b..37a7034df25765322868ce8ba2b94b48efaa7ee2 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    163,
 /**/
     162,
 /**/