Skip to content

Commit

Permalink
Suppress bidi version string in \special lines (closes #226)
Browse files Browse the repository at this point in the history
  • Loading branch information
josephwright committed Apr 12, 2022
1 parent fcd5431 commit c208717
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ this project uses date-based 'snapshot' version identifiers.
### Added
- Basic support for `make4ht`

### Changed
- Support `bidi` version string in `\special` lines (closes \#226)

## [2022-03-15]

### Changed
Expand Down
4 changes: 4 additions & 0 deletions l3build-check.lua
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,10 @@ local function normalize_log(content,engine,errlevels)
if match(line, "^%.*\\special%{papersize") then
return ""
end
-- Remove bidi version in \special lines line
if match(line, "BIDI.Fullbanner") then
line = gsub(line,"Version %d*%.%d*", "Version ...")
end
-- Remove ConTeXt stuff
if match(line, "^backend >") or
match(line, "^close source >") or
Expand Down

0 comments on commit c208717

Please sign in to comment.