[latex3-commits] [l3svn] branch master updated: l3build: Allow for spaces at start of .fd lines
noreply at latex-project.org
noreply at latex-project.org
Fri Sep 11 21:39:47 CEST 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 1ee7a6d l3build: Allow for spaces at start of .fd lines
1ee7a6d is described below
commit 1ee7a6d650c9177e40572053dd7d194985811182
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date: Fri Sep 11 19:22:30 2015 +0100
l3build: Allow for spaces at start of .fd lines
LuaTeX seems to have these.
---
l3build/l3build.lua | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index 918ce8c..8b03cd4 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -727,7 +727,7 @@ function formatlog(logfile, newfile, engine)
-- Zap map loading of map
line = string.gsub(line, "%{%w?:?[%w/%-]*/pdftex%.map%}", "")
-- Merge all of .fd data into one line so will be removed later
- if string.match(line, "^%([%.%/%w]+%.fd[^%)]*$") then
+ if string.match(line, "^ *%([%.%/%w]+%.fd[^%)]*$") then
lastline = (lastline or "") .. line
return ""
end
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the latex3-commits
mailing list