From 7cb769a69f5b9d6951f4427c85e75f5b2909cf10 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 16 Nov 2017 17:36:02 +0100 Subject: [PATCH] patch 8.0.1301: generated license file for NSIS has a modeline Problem: Generated license file for NSIS has a modeline. Solution: Adjust the pattern for sed. (Ken Takata) --- runtime/doc/Makefile | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile index 46b6125a9..d60501e0f 100644 --- a/runtime/doc/Makefile +++ b/runtime/doc/Makefile @@ -343,7 +343,7 @@ xxd.man: xxd.1 nroff -man xxd.1 | sed -e s/.//g > xxd.man uganda.nsis.txt: uganda.txt - sed -e 's/[ ]*\*[-a-zA-Z0-9.]*\*//g' -e 's/vim:tw=78://' \ + sed -e 's/[ ]*\*[-a-zA-Z0-9.]*\*//g' -e 's/vim:tw=78:.*//' \ uganda.txt | uniq >uganda.nsis.txt # Awk version of .txt to .html conversion. diff --git a/src/version.c b/src/version.c index 2a50a1b51..cf62d5937 100644 --- a/src/version.c +++ b/src/version.c @@ -766,6 +766,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1301, /**/ 1300, /**/ -- 2.50.1