summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/l3build/l3build-check.lua
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-03-13 21:02:05 +0000
committerKarl Berry <karl@freefriends.org>2020-03-13 21:02:05 +0000
commitb14fd3b8e8d6392eecf80e2425f969c4da2ce6a9 (patch)
tree2490ebc7a0f0c1edb75b012ade4429f00e987849 /Master/texmf-dist/scripts/l3build/l3build-check.lua
parent054f1f2d4e45c46e1ba912e6e45528a921efe819 (diff)
l3build (13mar20)
git-svn-id: svn://tug.org/texlive/trunk@54282 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/l3build/l3build-check.lua')
-rw-r--r--Master/texmf-dist/scripts/l3build/l3build-check.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/l3build/l3build-check.lua b/Master/texmf-dist/scripts/l3build/l3build-check.lua
index c90c8fbc5a8..1487d372541 100644
--- a/Master/texmf-dist/scripts/l3build/l3build-check.lua
+++ b/Master/texmf-dist/scripts/l3build/l3build-check.lua
@@ -537,7 +537,9 @@ local function normalize_pdf(content)
binary = false
stream = true
stream_content = "stream" .. os_newline
- elseif not match(line, "^ *$") and not match(line,"^%%%%") then
+ elseif not match(line, "^ *$") and
+ not match(line,"^%%%%Invocation") and
+ not match(line,"^%%%%%+") then
line = gsub(line,"%/ID %[<[^>]+><[^>]+>]","/ID [<ID-STRING><ID-STRING>]")
new_content = new_content .. line .. os_newline
end