diff src/Make_mvc.mak @ 15027:efd7bace40f4 v8.1.0525

patch 8.1.0525: terminal test skips part on Windows commit https://github.com/vim/vim/commit/d3471e578506d5554ab99c4cd08af2a021c4f461 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 12 21:42:24 2018 +0100 patch 8.1.0525: terminal test skips part on Windows Problem: Terminal test skips part on Windows. Solution: Fix Test_terminal_does_not_truncate_last_newlines(). (Hirohito Higashi, closes #3606)
author Bram Moolenaar <Bram@vim.org>
date Mon, 12 Nov 2018 21:45:06 +0100
parents 8b1b3228c410
children 9df130fd5e0d
line wrap: on
line diff
--- a/src/Make_mvc.mak
+++ b/src/Make_mvc.mak
@@ -1269,7 +1269,8 @@ GvimExt/gvimext.dll: GvimExt/gvimext.cpp
 
 
 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 @@ testclean:
 	$(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 ..
 
 ###########################################################################