diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-03-09 19:21:30 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-03-09 19:21:30 +0100 |
commit | 1ef73e33c9414eb02c229d8234aafd9d481a8856 (patch) | |
tree | ea8c934b8f2e1d109ab7bce70074bf0bde5dda09 /src/version.c | |
parent | ad2cfb54b78523435b31de7234081ff70a53e736 (diff) | |
download | vim-1ef73e33c9414eb02c229d8234aafd9d481a8856.zip |
patch 8.0.0442: patch shell command not well escaped
Problem: Patch shell command uses double quotes around the argument, which
allows for $HOME to be expanded. (Etienne)
Solution: Use single quotes on Unix. (closes #1543)
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index aee70ef65..0f7b4e499 100644 --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 442, +/**/ 441, /**/ 440, |