# HG changeset patch # User Bram Moolenaar # Date 1622059207 -7200 # Node ID 4f496086158368ce5e4d6285985c548b55c66d93 # Parent 7a9ffe758bb11d911ada015ec22fa0b8e096499a patch 8.2.2889: typo and verbose comment in Makefiles Commit: https://github.com/vim/vim/commit/c512599b22aac7305b171566c2f595e0ae85b885 Author: K.Takata Date: Wed May 26 21:49:18 2021 +0200 patch 8.2.2889: typo and verbose comment in Makefiles Problem: Typo and verbose comment in Makefiles. Solution: Fix typo. Use @#. (Ken Takata, closes https://github.com/vim/vim/issues/8252) diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -152,7 +152,7 @@ MINOR = 2 # > cd src # > msvc2015.bat # - Build the console binary: -# > nmake -f Mae_mvc.mak +# > nmake -f Make_mvc.mak # - Run the tests and check the output: # > nmake -f Make_mvc.mak testclean # > nmake -f Make_mvc.mak test diff --git a/src/testdir/Makefile b/src/testdir/Makefile --- a/src/testdir/Makefile +++ b/src/testdir/Makefile @@ -40,7 +40,7 @@ tiny: nolog tinytests report benchmark: $(SCRIPTS_BENCH) report: - # without the +eval feature test_result.log is a copy of test.log + @# without the +eval feature test_result.log is a copy of test.log @/bin/sh -c "if test -f test.log; \ then cp test.log test_result.log; \ else echo No failures reported > test_result.log; \ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2889, +/**/ 2888, /**/ 2887,