diff options
Diffstat (limited to 'Master/texmf-dist/tex/latex/l3build')
-rw-r--r-- | Master/texmf-dist/tex/latex/l3build/l3build.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Master/texmf-dist/tex/latex/l3build/l3build.lua b/Master/texmf-dist/tex/latex/l3build/l3build.lua index 2b20e41474e..e965353d2ea 100644 --- a/Master/texmf-dist/tex/latex/l3build/l3build.lua +++ b/Master/texmf-dist/tex/latex/l3build/l3build.lua @@ -17,8 +17,8 @@ --]] -- Version information: should be identical to that in l3build.dtx -release_date = "2014/11/21" -release_ver = "5462" +release_date = "2014/11/25" +release_ver = "5471" -- "module" is a deprecated function in Lua 5.2: as we want the name -- for other purposes, and it should eventually be 'free', simply @@ -488,6 +488,8 @@ function formatlog (logfile, newfile) if checksearch then line = string.gsub (line, "%(.*/([%w-]+%.[%w-]+)%s*$", "(../%1") end + -- Zap map loading on first page output + line = string.gsub (line, "%[1{[%w/%-]*/pdftex%.map}%]", "[1]") -- XeTeX knows only the smaller set of dimension units line = string.gsub ( line, "cm, mm, dd, cc, bp, or sp", "cm, mm, dd, cc, nd, nc, bp, or sp" @@ -508,6 +510,8 @@ function formatlog (logfile, newfile) line = string.gsub ( line, "glue set (%d+.%d%d%d%d)%dfil", "glue set %1fil" ) + -- Remove 'display' at end of display math boxes: LuaTeX omits this + line = string.gsub (line, "(\\hbox%(.*), display$", "%1") -- Remove 'normal' direction information on boxes in LuaTeX: -- any bidi/vertical stuff will still show line = string.gsub (line, ", direction TLT", "") |