summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-05-04 03:37:10 +0200
committerBram Moolenaar <Bram@vim.org>2013-05-04 03:37:10 +0200
commit02938a970cfaf97622417b2cc62eb6a955ef1016 (patch)
treef1734a8ff2a75ff7945d3d97c6d4e2cfcfce42b9
parentff0341946eabf4dcb616a2bbe7a2e9d69ae46e57 (diff)
downloadvim-git-02938a970cfaf97622417b2cc62eb6a955ef1016.tar.gz
updated for version 7.3.919v7.3.919
Problem: An empty nl.po file does not work with an old msgfmt. Solution: Put a single # in the file. (Laurent Blume)
-rw-r--r--src/po/Makefile5
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/src/po/Makefile b/src/po/Makefile
index 09c8861b6..5d57bb15a 100644
--- a/src/po/Makefile
+++ b/src/po/Makefile
@@ -176,9 +176,10 @@ uninstall:
converted: $(MOCONVERTED)
-# nl.po was added later, if it does not exist use an empty file.
+# nl.po was added later, if it does not exist use a file with just a # in it
+# (an empty file doesn't work with old msgfmt).
nl.po:
- touch nl.po
+ @( echo \# > nl.po )
# Norwegian/Bokmal: "nb" is an alias for "no".
# Copying the file is not efficient, but I don't know of another way to make
diff --git a/src/version.c b/src/version.c
index 311dc329d..df8fe9a76 100644
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 919,
+/**/
918,
/**/
917,