[latex3-commits] [git/LaTeX3-latex3-l3build] main: Suppress bidi version string in \special lines (closes #226) (c208717)

Joseph Wright joseph.wright at morningstar2.co.uk
Tue Apr 12 13:23:05 CEST 2022


Repository : https://github.com/latex3/l3build
On branch  : main
Link       : https://github.com/latex3/l3build/commit/c20871704a34486b4f2a137c795c67924b6caebe

>---------------------------------------------------------------

commit c20871704a34486b4f2a137c795c67924b6caebe
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Tue Apr 12 12:23:05 2022 +0100

    Suppress bidi version string in \special lines (closes #226)


>---------------------------------------------------------------

c20871704a34486b4f2a137c795c67924b6caebe
 CHANGELOG.md      | 3 +++
 l3build-check.lua | 4 ++++
 2 files changed, 7 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index c84b46a..25500aa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/l3build-check.lua b/l3build-check.lua
index 81ce842..94ffc67 100644
--- a/l3build-check.lua
+++ b/l3build-check.lua
@@ -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





More information about the latex3-commits mailing list.