summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/l3build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-11-26 23:25:13 +0000
committerKarl Berry <karl@freefriends.org>2014-11-26 23:25:13 +0000
commitb9e6e333665e4a3e044dc084dcbe603fb68b741e (patch)
treec652a0f43af38813acf05e1e74706272e909641a /Master/texmf-dist/tex/latex/l3build
parentb8f77d335f738196531dc9afc90b85e640909d0d (diff)
l3 (26nov14)
git-svn-id: svn://tug.org/texlive/trunk@35669 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/l3build')
-rw-r--r--Master/texmf-dist/tex/latex/l3build/l3build.lua8
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", "")