diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-04-28 12:57:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-04-28 12:57:36 +0200 |
commit | f1fda2d6e591a5b5bb549e4ca30c9029c544eea9 (patch) | |
tree | 536493017972bf1335b1ac2164c08355456a0df7 /src | |
parent | e962388eaca69d607e16b9c632d2b842848a6489 (diff) | |
download | vim-f1fda2d6e591a5b5bb549e4ca30c9029c544eea9.zip |
updated for version 7.3.163
Problem: For the default of 'shellpipe' "mksh" and "pdksh" are not
recognized.
Solution: Recognize these shell names.
Diffstat (limited to 'src')
-rw-r--r-- | src/option.c | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/option.c b/src/option.c index b63346637..6e9b3db1a 100644 --- a/src/option.c +++ b/src/option.c @@ -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 diff --git a/src/version.c b/src/version.c index 5b681a029..37a7034df 100644 --- 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 */ /**/ + 163, +/**/ 162, /**/ 161, |