[latex3-commits] [l3svn] branch master updated: l3build: One LuaTeX v0.85 difference normalised
noreply at latex-project.org
noreply at latex-project.org
Tue Nov 17 23:31:02 CET 2015
This is an automated email from the git hooks/post-receive script.
joseph pushed a commit to branch master
in repository l3svn.
The following commit(s) were added to refs/heads/master by this push:
new a35bc6e l3build: One LuaTeX v0.85 difference normalised
a35bc6e is described below
commit a35bc6e60309aca959a7468c79ed99a5d7458c98
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date: Tue Nov 17 22:28:25 2015 +0000
l3build: One LuaTeX v0.85 difference normalised
---
l3build/l3build.lua | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index 19a180e..7bc36cd 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -858,7 +858,8 @@ function formatlualog(logfile, newfile)
local function normalize(line, lastline, dropping)
-- Find \discretionary or \whatsit lines:
-- These may come back later
- if string.match(line, "^%.+\\discretionary$") or
+ if string.match(line, "^%.+\\discretionary$") or
+ string.match(line, "^%.+\\discretionary50%|$") or
string.match(line, "^%.+\\whatsit$") then
return "", line
end
@@ -910,7 +911,8 @@ function formatlualog(logfile, newfile)
end
-- Where the last line was a discretionary, looks for the
-- info one level in about what it represents
- if string.match(lastline, "^%.+\\discretionary$") then
+ if string.match(lastline, "^%.+\\discretionary$") or
+ string.match(lastline, "^%.+\\discretionary50%|$") then
local prefix = boxprefix(lastline)
if string.match(line, prefix .. "%.") or
string.match(line, prefix .. "%|") then
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the latex3-commits
mailing list