Skip to content

Commit

Permalink
Normalise function calls (see #127)
Browse files Browse the repository at this point in the history
  • Loading branch information
josephwright committed Sep 13, 2020
1 parent 0496f31 commit 154e7d0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,10 @@ this project uses date-based 'snapshot' version identifiers.

## [Unreleased]

### Changed

- Normal Lua function calls (issue #127)

## [2020-06-04]

### Added
Expand Down
4 changes: 4 additions & 0 deletions l3build-check.lua
Expand Up @@ -325,6 +325,10 @@ local function normalize_lua_log(content,luatex)
if match(line, "^%.+\\mathon$") then
return line, line
end
-- Deal with Lua function calls
if match(line, "^Lua function") then
line = gsub(line,"= %d+$","= ...")
end
-- LuaTeX has a flexible output box
line = gsub(line,"\\box\\outputbox", "\\box255")
-- LuaTeX identifies spaceskip glue
Expand Down

0 comments on commit 154e7d0

Please sign in to comment.