diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-11-12 21:42:24 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-11-12 21:42:24 +0100 |
commit | d3471e578506d5554ab99c4cd08af2a021c4f461 (patch) | |
tree | 5f6528c8e19af37729888ffc1b7f199914b1bae1 /src/Make_mvc.mak | |
parent | c2c02574ec76f8d44b948cede9cca38ac91622de (diff) | |
download | vim-git-d3471e578506d5554ab99c4cd08af2a021c4f461.tar.gz |
patch 8.1.0525: terminal test skips part on Windowsv8.1.0525
Problem: Terminal test skips part on Windows.
Solution: Fix Test_terminal_does_not_truncate_last_newlines(). (Hirohito
Higashi, closes #3606)
Diffstat (limited to 'src/Make_mvc.mak')
-rw-r--r-- | src/Make_mvc.mak | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak index 89b1d1624..e281c89a3 100644 --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -1269,7 +1269,8 @@ GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h tags: notags - $(CTAGS) *.c *.cpp *.h if_perl.xs + $(CTAGS) *.c *.cpp *.h + if exist auto\if_perl.c $(CTAGS) --append=yes auto\if_perl.c notags: - if exist tags del tags @@ -1323,7 +1324,7 @@ $(NEW_TESTS): $(MAKE) /NOLOGO -f Make_dos.mak nolog $(MAKE) /NOLOGO -f Make_dos.mak $@.res $(MAKE) /NOLOGO -f Make_dos.mak report - cat messages + type messages cd .. ########################################################################### |