# HG changeset patch # User Bram Moolenaar # Date 1367631430 -7200 # Node ID 12636b8248163628e7c8df68210dc17932440157 # Parent 22fa3049e9348a8ce556a3e5ba65c6f0a7aa6b4a updated for version 7.3.919 Problem: An empty nl.po file does not work with an old msgfmt. Solution: Put a single # in the file. (Laurent Blume) diff --git a/src/po/Makefile b/src/po/Makefile --- 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 --- 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,