# HG changeset patch # User Bram Moolenaar # Date 1544976007 -3600 # Node ID fada746a971ba5da984cdf1dc7f8d79bb0216d2c # Parent 9a93ea72e1752042a69ed58477e429b3fe584ba1 patch 8.1.0605: running make in the top directory echoes a comment commit https://github.com/vim/vim/commit/6403bcdaf4dc36c0445a539a37510534ef87ca24 Author: Bram Moolenaar Date: Sun Dec 16 16:48:47 2018 +0100 patch 8.1.0605: running make in the top directory echoes a comment Problem: Running make in the top directory echoes a comment. Solution: Prefix with @. (closes https://github.com/vim/vim/issues/3698) diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ all install uninstall tools config confi @echo "Starting make in the src directory." @echo "If there are problems, cd to the src directory and run make there" cd src && $(MAKE) $@ - # When the target is "test" also run the indent tests. + @# When the target is "test" also run the indent tests. @if test "$@" = "test"; then \ $(MAKE) indenttest; \ fi diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -800,6 +800,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 605, +/**/ 604, /**/ 603,