summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-11-03 21:46:19 +0100
committerBram Moolenaar <Bram@vim.org>2019-11-03 21:46:19 +0100
commitd047840ce4b770a86bacab0d62e72d0f61a2b8ab (patch)
treeca910203d062b1f55c46e9eb5050dc435a0e5fef
parent1e814bc017907209a66af82f8fb76c6d1fc324aa (diff)
patch 8.1.2249: "make vimtags" does not print any messagev8.1.2249
Problem: "make vimtags" does not print any message. Solution: Add a message that the tags have been updated.
-rw-r--r--runtime/doc/Makefile5
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile
index cec670bf35..4ca08818dd 100644
--- a/runtime/doc/Makefile
+++ b/runtime/doc/Makefile
@@ -324,8 +324,9 @@ all: tags vim.man evim.man vimdiff.man vimtutor.man xxd.man $(CONVERTED)
# compiled and installed. Supports multiple languages.
vimtags: $(DOCS)
@if which $(VIMEXE) >/dev/null; then \
- $(VIMEXE) --clean -eX -u doctags.vim >/dev/null; \
- else echo "vim executable $(VIMEXE) not found"; fi
+ $(VIMEXE) --clean -eX -u doctags.vim >/dev/null; \
+ echo "help tags updated"; \
+ else echo "vim executable $(VIMEXE) not found; help tags not updated"; fi
# Use "doctags" to generate the tags file. Only works for English!
tags: doctags $(DOCS)
diff --git a/src/version.c b/src/version.c
index a577dab70b..0418204a5b 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2249,
+/**/
2248,
/**/
2247,