[latex3-commits] [l3svn] branch master updated: l3build: Fix regex for dropping empty \hbox after \mathon

noreply at latex-project.org noreply at latex-project.org
Fri Sep 11 18:52:18 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  dac76d0   l3build: Fix regex for dropping empty \hbox after \mathon
dac76d0 is described below

commit dac76d01fb068cb287b7cd1a4236cbebf1e116c7
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Fri Sep 11 17:51:43 2015 +0100

    l3build: Fix regex for dropping empty \hbox after \mathon
---
 l3build/l3build.lua |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index d968fe1..918ce8c 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -891,7 +891,7 @@ function formatlualog(logfile, newfile)
     -- drop it
     if string.match(lastline, "^%.+\\mathon$") then
       local prefix = boxprefix(lastline)
-      if string.match(line, prefix .. "\\hbox%(0%.0+0%.0%)x0%.0$") then
+      if string.match(line, prefix .. "\\hbox%(0%.0%+0%.0%)x0%.0$") then
         return "", ""
       end
     end

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the latex3-commits mailing list