summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-07-26 19:21:03 +0200
committerChristian Brabandt <cb@256bit.org>2024-07-26 19:21:03 +0200
commit6ed8ae837b9c19985c4291c885544f3f2f624154 (patch)
treef3fd06c6bb3b5de9f1954da0f24b8bddee8c30f0
parent70a11a6bf69f477844470ce59958b686024d2a41 (diff)
patch 9.1.0625: tests: test output all translated messages for all translationsv9.1.0625
Problem: tests: test output all translated messages for all translations Solution: Redirect the output of check.vim to /dev/null, it's not that useful. closes: #15354 Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--src/po/Makefile2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/po/Makefile b/src/po/Makefile
index f23c6d66f4..df9a0405c6 100644
--- a/src/po/Makefile
+++ b/src/po/Makefile
@@ -41,7 +41,7 @@ converted: $(MOCONVERTED)
.po.ck:
$(VIMPROG) -u NONE --noplugins -e -s -X --cmd "set enc=utf-8" \
- -S check.vim -c "if error == 0 | q | else | num 2 | cq | endif" $<
+ -S check.vim -c "if error == 0 | q | else | num 2 | cq | endif" $< >/dev/null
touch $@
check: $(CHECKFILES)
diff --git a/src/version.c b/src/version.c
index 0dadd19b10..a7b25391f2 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 625,
+/**/
624,
/**/
623,