diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-06 14:55:36 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-06 14:55:36 +0100 |
commit | 9269315f635e44a340389be7e986782b98499311 (patch) | |
tree | 7ca7f78d1f1660e00da3ca5b1965b9321f8f9c2f /src | |
parent | f845b87f2b3a45cbee160e28d7a3f50e54054809 (diff) | |
download | vim-9269315f635e44a340389be7e986782b98499311.zip |
patch 8.0.0144: when using MSVC the GvimExt directory is cleaned twice
Problem: When using MSVC the GvimExt directory is cleaned twice.
Solution: Remove the lines. (Ken Takata)
Diffstat (limited to 'src')
-rw-r--r-- | src/Make_mvc.mak | 3 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak index 5160aebd7..f1ecbe0b6 100644 --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -1123,9 +1123,6 @@ clean: cd GvimExt $(MAKE) /NOLOGO -f Makefile clean cd .. - cd GvimExt - $(MAKE) /NOLOGO -f Makefile clean - cd .. - if exist testdir\*.out del testdir\*.out test: diff --git a/src/version.c b/src/version.c index d4224cbdb..78717e14a 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 */ /**/ + 144, +/**/ 143, /**/ 142, |