[latex3-commits] [l3svn] 05/07: l3build: Normalise out more line numbers

noreply at latex-project.org noreply at latex-project.org
Sat Sep 26 08:46:56 CEST 2015


This is an automated email from the git hooks/post-receive script.

joseph pushed a commit to branch master
in repository l3svn.

commit 842e44252bc6d39d8455efcaedf4391010c9d8ca
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Sat Sep 26 07:39:17 2015 +0100

    l3build: Normalise out more line numbers
    
    This will require an update to e.g. LaTeX2e tests.
---
 contrib/testfiles/siunitx001.tlg                |    2 +-
 l3build/l3build.lua                             |    2 +
 l3kernel/testfiles/m3coffins001.uptex.tlg       |    4 +-
 l3kernel/testfiles/m3peek001.tlg                |    4 +-
 l3trial/l3hooks/testfiles/m3hooks001.luatex.tlg |   10 ++---
 l3trial/l3hooks/testfiles/m3hooks001.ptex.tlg   |   18 ++++----
 l3trial/l3hooks/testfiles/m3hooks001.tlg        |   10 ++---
 l3trial/l3hooks/testfiles/m3hooks001.uptex.tlg  |   30 ++++++-------
 l3trial/l3hooks/testfiles/m3hooks002.ptex.tlg   |    8 ++--
 l3trial/l3hooks/testfiles/m3hooks002.uptex.tlg  |   16 +++----
 l3trial/l3ldb/testfiles/m3ldb002.ptex.tlg       |    8 ++--
 l3trial/l3ldb/testfiles/m3ldb002.uptex.tlg      |   20 ++++-----
 l3trial/l3ldb/testfiles/m3ldb003.ptex.tlg       |   32 +++++++-------
 l3trial/l3ldb/testfiles/m3ldb003.tlg            |   12 +++---
 l3trial/l3ldb/testfiles/m3ldb003.uptex.tlg      |   52 +++++++++++------------
 l3trial/xbox/testfiles/xbox001.luatex.tlg       |    4 +-
 l3trial/xbox/testfiles/xbox001.ptex.tlg         |    4 +-
 l3trial/xbox/testfiles/xbox001.tlg              |    4 +-
 l3trial/xbox/testfiles/xbox001.uptex.tlg        |    4 +-
 l3trial/xbox/testfiles/xbox001.xetex.tlg        |    4 +-
 l3trial/xbox/testfiles/xbox002.ptex.tlg         |    4 +-
 l3trial/xbox/testfiles/xbox002.tlg              |    4 +-
 l3trial/xbox/testfiles/xbox002.uptex.tlg        |    4 +-
 l3trial/xbox/testfiles/xbox002.xetex.tlg        |    4 +-
 24 files changed, 133 insertions(+), 131 deletions(-)

diff --git a/contrib/testfiles/siunitx001.tlg b/contrib/testfiles/siunitx001.tlg
index c44d3d3..b3ec191 100644
--- a/contrib/testfiles/siunitx001.tlg
+++ b/contrib/testfiles/siunitx001.tlg
@@ -16,7 +16,7 @@ Don't change this file in any respect.
 %%   Grave accent  \`     Left brace    \{     Vertical bar  \|
 %%   Right brace   \}     Tilde         \~}
 %%
-LaTeX Font Info:    Try loading font information for TS1+cmr on input line 24.
+LaTeX Font Info:    Try loading font information for TS1+cmr on input line ....
 Completed box being shipped out [1]
 \vbox(633.0+0.0)x407.0
 .\glue 16.0
diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index 750a396..179b830 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -761,7 +761,9 @@ function formatlog(logfile, newfile, engine)
     -- Normalise a case where fixing a TeX bug changes the message text
     line = string.gsub(line, "\\csname\\endcsname ", "\\csname\\endcsname")
     -- Zap "on line <num>" and replace with "on line ..."
+    -- Two similar cases, Lua patterns mean we need to do them separately
     line = string.gsub(line, "on line %d*", "on line ...")
+    line = string.gsub(line, "on input line %d*", "on input line ...")
     -- Tidy up to ^^ notation
     for i = 0, 31 do
       line = string.gsub(line, string.char(i), "^^" .. string.char(64 + i))
diff --git a/l3kernel/testfiles/m3coffins001.uptex.tlg b/l3kernel/testfiles/m3coffins001.uptex.tlg
index a6b7b59..834bd49 100644
--- a/l3kernel/testfiles/m3coffins001.uptex.tlg
+++ b/l3kernel/testfiles/m3coffins001.uptex.tlg
@@ -210,9 +210,9 @@ Defining \1 on line ...
 Defining \2 on line ...
 \2=\box76
 LaTeX Font Info:    Font shape `JT2/mc/m/n' will be
-(Font)              scaled to size 4.8111pt on input line 79.
+(Font)              scaled to size 4.8111pt on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/m/n' will be
-(Font)              scaled to size 4.8111pt on input line 79.
+(Font)              scaled to size 4.8111pt on input line ....
 > \box71=
 \hbox(13.74443+0.0)x94.85011
 .\hbox(4.30554+0.0)x4.30554
diff --git a/l3kernel/testfiles/m3peek001.tlg b/l3kernel/testfiles/m3peek001.tlg
index 7be1cef..99219bb 100644
--- a/l3kernel/testfiles/m3peek001.tlg
+++ b/l3kernel/testfiles/m3peek001.tlg
@@ -170,9 +170,9 @@ TRUE
 TEST 8: Peek in alignment
 ============================================================
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 128.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 128.
+(Font)              <5> on input line ....
 TRUE
 FALSE
 TRUE
diff --git a/l3trial/l3hooks/testfiles/m3hooks001.luatex.tlg b/l3trial/l3hooks/testfiles/m3hooks001.luatex.tlg
index ff88621..ce7f5ef 100644
--- a/l3trial/l3hooks/testfiles/m3hooks001.luatex.tlg
+++ b/l3trial/l3hooks/testfiles/m3hooks001.luatex.tlg
@@ -17,9 +17,9 @@ Don't change this file in any respect.
 %%   Right brace   \}     Tilde         \~}
 %%
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 25.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 25.
+(Font)              <5> on input line ....
 ### vertical mode entered at line 0
 ### current page:
 \write-{}
@@ -109,11 +109,11 @@ goal height 550.0
 prevdepth 1.94444, prevgraf 4 lines
 ! OK.
 l. ...\showlists
-LaTeX Font Info:    Try loading font information for OMS+cmr on input line 44.
+LaTeX Font Info:    Try loading font information for OMS+cmr on input line ....
 LaTeX Font Info:    Font shape `OMS/cmr/bx/n' in size <14.4> not available
-(Font)              Font shape `OMS/cmsy/b/n' tried instead on input line 44.
+(Font)              Font shape `OMS/cmsy/b/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `OMS/cmr/m/n' in size <10> not available
-(Font)              Font shape `OMS/cmsy/m/n' tried instead on input line 45.
+(Font)              Font shape `OMS/cmsy/m/n' tried instead on input line ....
 ### vertical mode entered at line 0
 ### current page:
 \glue(\topskip) 0.0
diff --git a/l3trial/l3hooks/testfiles/m3hooks001.ptex.tlg b/l3trial/l3hooks/testfiles/m3hooks001.ptex.tlg
index 59a74ee..a32e07a 100644
--- a/l3trial/l3hooks/testfiles/m3hooks001.ptex.tlg
+++ b/l3trial/l3hooks/testfiles/m3hooks001.ptex.tlg
@@ -17,9 +17,9 @@ Don't change this file in any respect.
 %%   Right brace   \}     Tilde         \~}
 %%
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 25.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 25.
+(Font)              <5> on input line ....
 ### vertical mode entered at line 0
 ### current page:
 \write-{}
@@ -95,18 +95,18 @@ prevdepth 1.94444, prevgraf 4 lines
 ! OK.
 l. ...\showlists
 LaTeX Font Info:    Font shape `JT1/mc/bx/n' in size <14.4> not available
-(Font)              Font shape `JT1/gt/m/n' tried instead on input line 44.
+(Font)              Font shape `JT1/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JY1/mc/bx/n' in size <14.4> not available
-(Font)              Font shape `JY1/gt/m/n' tried instead on input line 44.
-LaTeX Font Info:    Try loading font information for OMS+cmr on input line 44.
+(Font)              Font shape `JY1/gt/m/n' tried instead on input line ....
+LaTeX Font Info:    Try loading font information for OMS+cmr on input line ....
 LaTeX Font Info:    Font shape `OMS/cmr/bx/n' in size <14.4> not available
-(Font)              Font shape `OMS/cmsy/b/n' tried instead on input line 44.
+(Font)              Font shape `OMS/cmsy/b/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `OMS/cmr/m/n' in size <10> not available
-(Font)              Font shape `OMS/cmsy/m/n' tried instead on input line 45.
+(Font)              Font shape `OMS/cmsy/m/n' tried instead on input line ....
 LaTeX Font Warning: Font shape `JT1/gt/m/it' undefined
-(Font)              using `JT1/gt/m/n' instead on input line 48.
+(Font)              using `JT1/gt/m/n' instead on input line ....
 LaTeX Font Warning: Font shape `JY1/gt/m/it' undefined
-(Font)              using `JY1/gt/m/n' instead on input line 48.
+(Font)              using `JY1/gt/m/n' instead on input line ....
 ### vertical mode entered at line 0
 ### current page:
 \glue(\topskip) 0.0
diff --git a/l3trial/l3hooks/testfiles/m3hooks001.tlg b/l3trial/l3hooks/testfiles/m3hooks001.tlg
index 438310a..b02217d 100644
--- a/l3trial/l3hooks/testfiles/m3hooks001.tlg
+++ b/l3trial/l3hooks/testfiles/m3hooks001.tlg
@@ -17,9 +17,9 @@ Don't change this file in any respect.
 %%   Right brace   \}     Tilde         \~}
 %%
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 25.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 25.
+(Font)              <5> on input line ....
 ### vertical mode entered at line 0
 ### current page:
 \write-{}
@@ -94,11 +94,11 @@ goal height 550.0
 prevdepth 1.94444, prevgraf 4 lines
 ! OK.
 l. ...\showlists
-LaTeX Font Info:    Try loading font information for OMS+cmr on input line 44.
+LaTeX Font Info:    Try loading font information for OMS+cmr on input line ....
 LaTeX Font Info:    Font shape `OMS/cmr/bx/n' in size <14.4> not available
-(Font)              Font shape `OMS/cmsy/b/n' tried instead on input line 44.
+(Font)              Font shape `OMS/cmsy/b/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `OMS/cmr/m/n' in size <10> not available
-(Font)              Font shape `OMS/cmsy/m/n' tried instead on input line 45.
+(Font)              Font shape `OMS/cmsy/m/n' tried instead on input line ....
 ### vertical mode entered at line 0
 ### current page:
 \glue(\topskip) 0.0
diff --git a/l3trial/l3hooks/testfiles/m3hooks001.uptex.tlg b/l3trial/l3hooks/testfiles/m3hooks001.uptex.tlg
index 9844424..f26d421 100644
--- a/l3trial/l3hooks/testfiles/m3hooks001.uptex.tlg
+++ b/l3trial/l3hooks/testfiles/m3hooks001.uptex.tlg
@@ -17,9 +17,9 @@ Don't change this file in any respect.
 %%   Right brace   \}     Tilde         \~}
 %%
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 25.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 25.
+(Font)              <5> on input line ....
 ### vertical mode entered at line 0
 ### current page:
 \write-{}
@@ -95,30 +95,30 @@ prevdepth 1.94444, prevgraf 4 lines
 ! OK.
 l. ...\showlists
 LaTeX Font Info:    Font shape `JT2/mc/m/n' will be
-(Font)              scaled to size 13.85594pt on input line 44.
+(Font)              scaled to size 13.85594pt on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/m/n' will be
-(Font)              scaled to size 13.85594pt on input line 44.
+(Font)              scaled to size 13.85594pt on input line ....
 LaTeX Font Info:    Font shape `JT2/mc/bx/n' in size <14.4> not available
-(Font)              Font shape `JT2/gt/m/n' tried instead on input line 44.
+(Font)              Font shape `JT2/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JT2/gt/m/n' will be
-(Font)              scaled to size 13.85594pt on input line 44.
+(Font)              scaled to size 13.85594pt on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/bx/n' in size <14.4> not available
-(Font)              Font shape `JY2/gt/m/n' tried instead on input line 44.
+(Font)              Font shape `JY2/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JY2/gt/m/n' will be
-(Font)              scaled to size 13.85594pt on input line 44.
-LaTeX Font Info:    Try loading font information for OMS+cmr on input line 44.
+(Font)              scaled to size 13.85594pt on input line ....
+LaTeX Font Info:    Try loading font information for OMS+cmr on input line ....
 LaTeX Font Info:    Font shape `OMS/cmr/bx/n' in size <14.4> not available
-(Font)              Font shape `OMS/cmsy/b/n' tried instead on input line 44.
+(Font)              Font shape `OMS/cmsy/b/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `OMS/cmr/m/n' in size <10> not available
-(Font)              Font shape `OMS/cmsy/m/n' tried instead on input line 45.
+(Font)              Font shape `OMS/cmsy/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JT2/gt/m/n' will be
-(Font)              scaled to size 9.6222pt on input line 48.
+(Font)              scaled to size 9.6222pt on input line ....
 LaTeX Font Info:    Font shape `JY2/gt/m/n' will be
-(Font)              scaled to size 9.6222pt on input line 48.
+(Font)              scaled to size 9.6222pt on input line ....
 LaTeX Font Warning: Font shape `JT2/gt/m/it' undefined
-(Font)              using `JT2/gt/m/n' instead on input line 48.
+(Font)              using `JT2/gt/m/n' instead on input line ....
 LaTeX Font Warning: Font shape `JY2/gt/m/it' undefined
-(Font)              using `JY2/gt/m/n' instead on input line 48.
+(Font)              using `JY2/gt/m/n' instead on input line ....
 ### vertical mode entered at line 0
 ### current page:
 \glue(\topskip) 0.0
diff --git a/l3trial/l3hooks/testfiles/m3hooks002.ptex.tlg b/l3trial/l3hooks/testfiles/m3hooks002.ptex.tlg
index 891f06c..87eba05 100644
--- a/l3trial/l3hooks/testfiles/m3hooks002.ptex.tlg
+++ b/l3trial/l3hooks/testfiles/m3hooks002.ptex.tlg
@@ -17,13 +17,13 @@ Don't change this file in any respect.
 %%   Right brace   \}     Tilde         \~}
 %%
 LaTeX Font Info:    Font shape `JT1/mc/bx/n' in size <14.4> not available
-(Font)              Font shape `JT1/gt/m/n' tried instead on input line 21.
+(Font)              Font shape `JT1/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JY1/mc/bx/n' in size <14.4> not available
-(Font)              Font shape `JY1/gt/m/n' tried instead on input line 21.
+(Font)              Font shape `JY1/gt/m/n' tried instead on input line ....
 LaTeX Font Warning: Font shape `JT1/mc/bx/it' undefined
-(Font)              using `JT1/mc/bx/n' instead on input line 28.
+(Font)              using `JT1/mc/bx/n' instead on input line ....
 LaTeX Font Warning: Font shape `JY1/mc/bx/it' undefined
-(Font)              using `JY1/mc/bx/n' instead on input line 28.
+(Font)              using `JY1/mc/bx/n' instead on input line ....
 ### vertical mode entered at line 0
 ### current page:
 \write-{}
diff --git a/l3trial/l3hooks/testfiles/m3hooks002.uptex.tlg b/l3trial/l3hooks/testfiles/m3hooks002.uptex.tlg
index c0a8157..06c70e7 100644
--- a/l3trial/l3hooks/testfiles/m3hooks002.uptex.tlg
+++ b/l3trial/l3hooks/testfiles/m3hooks002.uptex.tlg
@@ -17,21 +17,21 @@ Don't change this file in any respect.
 %%   Right brace   \}     Tilde         \~}
 %%
 LaTeX Font Info:    Font shape `JT2/mc/m/n' will be
-(Font)              scaled to size 13.85594pt on input line 21.
+(Font)              scaled to size 13.85594pt on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/m/n' will be
-(Font)              scaled to size 13.85594pt on input line 21.
+(Font)              scaled to size 13.85594pt on input line ....
 LaTeX Font Info:    Font shape `JT2/mc/bx/n' in size <14.4> not available
-(Font)              Font shape `JT2/gt/m/n' tried instead on input line 21.
+(Font)              Font shape `JT2/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JT2/gt/m/n' will be
-(Font)              scaled to size 13.85594pt on input line 21.
+(Font)              scaled to size 13.85594pt on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/bx/n' in size <14.4> not available
-(Font)              Font shape `JY2/gt/m/n' tried instead on input line 21.
+(Font)              Font shape `JY2/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JY2/gt/m/n' will be
-(Font)              scaled to size 13.85594pt on input line 21.
+(Font)              scaled to size 13.85594pt on input line ....
 LaTeX Font Warning: Font shape `JT2/mc/bx/it' undefined
-(Font)              using `JT2/mc/bx/n' instead on input line 28.
+(Font)              using `JT2/mc/bx/n' instead on input line ....
 LaTeX Font Warning: Font shape `JY2/mc/bx/it' undefined
-(Font)              using `JY2/mc/bx/n' instead on input line 28.
+(Font)              using `JY2/mc/bx/n' instead on input line ....
 ### vertical mode entered at line 0
 ### current page:
 \write-{}
diff --git a/l3trial/l3ldb/testfiles/m3ldb002.ptex.tlg b/l3trial/l3ldb/testfiles/m3ldb002.ptex.tlg
index 0c47f5f..416f46a 100644
--- a/l3trial/l3ldb/testfiles/m3ldb002.ptex.tlg
+++ b/l3trial/l3ldb/testfiles/m3ldb002.ptex.tlg
@@ -35,9 +35,9 @@ LDB: .......... 0.0pt -> 30pt
 LDB: 
 LDB: End Processing ***** quote ***** (sequenced) on line ...
 LaTeX Font Info:    Font shape `JT1/mc/bx/n' in size <12> not available
-(Font)              Font shape `JT1/gt/m/n' tried instead on input line 113.
+(Font)              Font shape `JT1/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JY1/mc/bx/n' in size <12> not available
-(Font)              Font shape `JY1/gt/m/n' tried instead on input line 113.
+(Font)              Font shape `JY1/gt/m/n' tried instead on input line ....
 LDB: 
 LDB: Begin Processing ***** enumerate,list ***** (sequenced) on line ...
 LDB: ..... Change \@itemlabel because of `<enumerate':
@@ -103,9 +103,9 @@ LDB: End Processing ***** itemize,list ***** (sequenced) on line ...
 LDB: 
 LDB: End Processing ***** enumerate,list ***** (sequenced) on line ...
 LaTeX Font Info:    Font shape `JT1/mc/bx/n' in size <10> not available
-(Font)              Font shape `JT1/gt/m/n' tried instead on input line 155.
+(Font)              Font shape `JT1/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JY1/mc/bx/n' in size <10> not available
-(Font)              Font shape `JY1/gt/m/n' tried instead on input line 155.
+(Font)              Font shape `JY1/gt/m/n' tried instead on input line ....
 [2
 ]
 LDB: 
diff --git a/l3trial/l3ldb/testfiles/m3ldb002.uptex.tlg b/l3trial/l3ldb/testfiles/m3ldb002.uptex.tlg
index eda19f1..932f3d2 100644
--- a/l3trial/l3ldb/testfiles/m3ldb002.uptex.tlg
+++ b/l3trial/l3ldb/testfiles/m3ldb002.uptex.tlg
@@ -35,17 +35,17 @@ LDB: .......... 0.0pt -> 30pt
 LDB: 
 LDB: End Processing ***** quote ***** (sequenced) on line ...
 LaTeX Font Info:    Font shape `JT2/mc/m/n' will be
-(Font)              scaled to size 11.54663pt on input line 113.
+(Font)              scaled to size 11.54663pt on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/m/n' will be
-(Font)              scaled to size 11.54663pt on input line 113.
+(Font)              scaled to size 11.54663pt on input line ....
 LaTeX Font Info:    Font shape `JT2/mc/bx/n' in size <12> not available
-(Font)              Font shape `JT2/gt/m/n' tried instead on input line 113.
+(Font)              Font shape `JT2/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JT2/gt/m/n' will be
-(Font)              scaled to size 11.54663pt on input line 113.
+(Font)              scaled to size 11.54663pt on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/bx/n' in size <12> not available
-(Font)              Font shape `JY2/gt/m/n' tried instead on input line 113.
+(Font)              Font shape `JY2/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JY2/gt/m/n' will be
-(Font)              scaled to size 11.54663pt on input line 113.
+(Font)              scaled to size 11.54663pt on input line ....
 LDB: 
 LDB: Begin Processing ***** enumerate,list ***** (sequenced) on line ...
 LDB: ..... Change \@itemlabel because of `<enumerate':
@@ -111,13 +111,13 @@ LDB: End Processing ***** itemize,list ***** (sequenced) on line ...
 LDB: 
 LDB: End Processing ***** enumerate,list ***** (sequenced) on line ...
 LaTeX Font Info:    Font shape `JT2/mc/bx/n' in size <10> not available
-(Font)              Font shape `JT2/gt/m/n' tried instead on input line 155.
+(Font)              Font shape `JT2/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JT2/gt/m/n' will be
-(Font)              scaled to size 9.6222pt on input line 155.
+(Font)              scaled to size 9.6222pt on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/bx/n' in size <10> not available
-(Font)              Font shape `JY2/gt/m/n' tried instead on input line 155.
+(Font)              Font shape `JY2/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JY2/gt/m/n' will be
-(Font)              scaled to size 9.6222pt on input line 155.
+(Font)              scaled to size 9.6222pt on input line ....
 [2
 ]
 LDB: 
diff --git a/l3trial/l3ldb/testfiles/m3ldb003.ptex.tlg b/l3trial/l3ldb/testfiles/m3ldb003.ptex.tlg
index 1a55367..f43a3e4 100644
--- a/l3trial/l3ldb/testfiles/m3ldb003.ptex.tlg
+++ b/l3trial/l3ldb/testfiles/m3ldb003.ptex.tlg
@@ -59,9 +59,9 @@ LDB: .......... itemize -> item
 LDB: ..... Change \l_xtemplate_type_tl because of `<item':
 LDB: .......... list -> listitem
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 301.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 301.
+(Font)              <5> on input line ....
 LDB: 
 LDB: End Processing ***** ,item ***** on line ...
 LDB: 
@@ -187,9 +187,9 @@ LDB: ......=>.. \UseInstanceValues  {left-margin=20pt}
 LDB: ..... Execute function because of `<list*<itemize':
 LDB: ......=>.. \UseInstanceValues  {item-label-text=\textbf {--}, make-label=\hss \llap {##1},text-font=\itshape }
 LaTeX Font Warning: Font shape `JT1/mc/m/it' undefined
-(Font)              using `JT1/mc/m/n' instead on input line 327.
+(Font)              using `JT1/mc/m/n' instead on input line ....
 LaTeX Font Warning: Font shape `JY1/mc/m/it' undefined
-(Font)              using `JY1/mc/m/n' instead on input line 327.
+(Font)              using `JY1/mc/m/n' instead on input line ....
 LDB: 
 LDB: Begin Processing ***** ,item ***** (sequenced) on line ...
 LDB: ..... Change \UseInstanceName because of `<item':
@@ -197,13 +197,13 @@ LDB: .......... itemize -> item
 LDB: ..... Change \l_xtemplate_type_tl because of `<item':
 LDB: .......... list -> listitem
 LaTeX Font Warning: Font shape `JT1/mc/bx/it' undefined
-(Font)              using `JT1/mc/bx/n' instead on input line 329.
+(Font)              using `JT1/mc/bx/n' instead on input line ....
 LaTeX Font Info:    Font shape `JT1/mc/bx/n' in size <10> not available
-(Font)              Font shape `JT1/gt/m/n' tried instead on input line 329.
+(Font)              Font shape `JT1/gt/m/n' tried instead on input line ....
 LaTeX Font Warning: Font shape `JY1/mc/bx/it' undefined
-(Font)              using `JY1/mc/bx/n' instead on input line 329.
+(Font)              using `JY1/mc/bx/n' instead on input line ....
 LaTeX Font Info:    Font shape `JY1/mc/bx/n' in size <10> not available
-(Font)              Font shape `JY1/gt/m/n' tried instead on input line 329.
+(Font)              Font shape `JY1/gt/m/n' tried instead on input line ....
 LDB: 
 LDB: Begin Processing ***** list,enumerate ***** on line ...
 LDB: ..... Change \UseInstanceName because of `<enumerate':
@@ -239,9 +239,9 @@ LDB: ......=>.. \UseInstanceValues  {item-label-text=\textbullet , text-font=\sf
 LDB: ..... Execute function because of `<list*<list*<list*<itemize':
 LDB: ......=>.. \UseInstanceValues  {item-label-text=??, text-font=\footnotesize \sffamily \slshape }
 LaTeX Font Warning: Font shape `JT1/mc/m/sl' undefined
-(Font)              using `JT1/mc/m/n' instead on input line 333.
+(Font)              using `JT1/mc/m/n' instead on input line ....
 LaTeX Font Warning: Font shape `JY1/mc/m/sl' undefined
-(Font)              using `JY1/mc/m/n' instead on input line 333.
+(Font)              using `JY1/mc/m/n' instead on input line ....
 LDB: 
 LDB: Begin Processing ***** ,item ***** (sequenced) on line ...
 LDB: ..... Change \UseInstanceName because of `<item':
@@ -279,9 +279,9 @@ LDB: .......... item -> item
 LDB: ..... Change \l_xtemplate_type_tl because of `<item':
 LDB: .......... listitem -> listitem
 LaTeX Font Info:    Font shape `JT1/mc/bx/it' in size <10> not available
-(Font)              Font shape `JT1/gt/m/n' tried instead on input line 345.
+(Font)              Font shape `JT1/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JY1/mc/bx/it' in size <10> not available
-(Font)              Font shape `JY1/gt/m/n' tried instead on input line 345.
+(Font)              Font shape `JY1/gt/m/n' tried instead on input line ....
 LDB: 
 LDB: Begin Processing ***** list,itemize ***** on line ...
 LDB: ..... Change \UseInstanceName because of `<itemize':
@@ -299,18 +299,18 @@ LDB: ......=>.. \UseInstanceValues  {left-margin=70pt}
 LDB: ..... Execute function because of `<list*<list*<itemize':
 LDB: ......=>.. \UseInstanceValues  {item-label-text=\textbullet , text-font=\sffamily \slshape }
 LaTeX Font Warning: Font shape `OT1/cmss/m/it' in size <10> not available
-(Font)              Font shape `OT1/cmss/m/sl' tried instead on input line 346.
+(Font)              Font shape `OT1/cmss/m/sl' tried instead on input line ....
 LDB: 
 LDB: Begin Processing ***** ,item ***** (sequenced) on line ...
 LDB: ..... Change \UseInstanceName because of `<item':
 LDB: .......... itemize -> item
 LDB: ..... Change \l_xtemplate_type_tl because of `<item':
 LDB: .......... list -> listitem
-LaTeX Font Info:    Try loading font information for OMS+cmss on input line 347.
-LaTeX Font Info:    No file OMScmss.fd. on input line 347.
+LaTeX Font Info:    Try loading font information for OMS+cmss on input line ....
+LaTeX Font Info:    No file OMScmss.fd. on input line ....
 LaTeX Font Warning: Font shape `OMS/cmss/m/sl' undefined
 (Font)              using `OMS/cmsy/m/n' instead
-(Font)              for symbol `textbullet' on input line 347.
+(Font)              for symbol `textbullet' on input line ....
 LDB: 
 LDB: End Processing ***** ,item ***** on line ...
 LDB: 
diff --git a/l3trial/l3ldb/testfiles/m3ldb003.tlg b/l3trial/l3ldb/testfiles/m3ldb003.tlg
index 44559c2..9a7ed7c 100644
--- a/l3trial/l3ldb/testfiles/m3ldb003.tlg
+++ b/l3trial/l3ldb/testfiles/m3ldb003.tlg
@@ -59,9 +59,9 @@ LDB: .......... itemize -> item
 LDB: ..... Change \l_xtemplate_type_tl because of `<item':
 LDB: .......... list -> listitem
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 301.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 301.
+(Font)              <5> on input line ....
 LDB: 
 LDB: End Processing ***** ,item ***** on line ...
 LDB: 
@@ -279,18 +279,18 @@ LDB: ......=>.. \UseInstanceValues  {left-margin=70pt}
 LDB: ..... Execute function because of `<list*<list*<itemize':
 LDB: ......=>.. \UseInstanceValues  {item-label-text=\textbullet , text-font=\sffamily \slshape }
 LaTeX Font Warning: Font shape `OT1/cmss/m/it' in size <10> not available
-(Font)              Font shape `OT1/cmss/m/sl' tried instead on input line 346.
+(Font)              Font shape `OT1/cmss/m/sl' tried instead on input line ....
 LDB: 
 LDB: Begin Processing ***** ,item ***** (sequenced) on line ...
 LDB: ..... Change \UseInstanceName because of `<item':
 LDB: .......... itemize -> item
 LDB: ..... Change \l_xtemplate_type_tl because of `<item':
 LDB: .......... list -> listitem
-LaTeX Font Info:    Try loading font information for OMS+cmss on input line 347.
-LaTeX Font Info:    No file OMScmss.fd. on input line 347.
+LaTeX Font Info:    Try loading font information for OMS+cmss on input line ....
+LaTeX Font Info:    No file OMScmss.fd. on input line ....
 LaTeX Font Warning: Font shape `OMS/cmss/m/sl' undefined
 (Font)              using `OMS/cmsy/m/n' instead
-(Font)              for symbol `textbullet' on input line 347.
+(Font)              for symbol `textbullet' on input line ....
 LDB: 
 LDB: End Processing ***** ,item ***** on line ...
 LDB: 
diff --git a/l3trial/l3ldb/testfiles/m3ldb003.uptex.tlg b/l3trial/l3ldb/testfiles/m3ldb003.uptex.tlg
index 154997d..1a09403 100644
--- a/l3trial/l3ldb/testfiles/m3ldb003.uptex.tlg
+++ b/l3trial/l3ldb/testfiles/m3ldb003.uptex.tlg
@@ -59,9 +59,9 @@ LDB: .......... itemize -> item
 LDB: ..... Change \l_xtemplate_type_tl because of `<item':
 LDB: .......... list -> listitem
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 301.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 301.
+(Font)              <5> on input line ....
 LDB: 
 LDB: End Processing ***** ,item ***** on line ...
 LDB: 
@@ -187,9 +187,9 @@ LDB: ......=>.. \UseInstanceValues  {left-margin=20pt}
 LDB: ..... Execute function because of `<list*<itemize':
 LDB: ......=>.. \UseInstanceValues  {item-label-text=\textbf {--}, make-label=\hss \llap {##1},text-font=\itshape }
 LaTeX Font Warning: Font shape `JT2/mc/m/it' undefined
-(Font)              using `JT2/mc/m/n' instead on input line 327.
+(Font)              using `JT2/mc/m/n' instead on input line ....
 LaTeX Font Warning: Font shape `JY2/mc/m/it' undefined
-(Font)              using `JY2/mc/m/n' instead on input line 327.
+(Font)              using `JY2/mc/m/n' instead on input line ....
 LDB: 
 LDB: Begin Processing ***** ,item ***** (sequenced) on line ...
 LDB: ..... Change \UseInstanceName because of `<item':
@@ -197,17 +197,17 @@ LDB: .......... itemize -> item
 LDB: ..... Change \l_xtemplate_type_tl because of `<item':
 LDB: .......... list -> listitem
 LaTeX Font Warning: Font shape `JT2/mc/bx/it' undefined
-(Font)              using `JT2/mc/bx/n' instead on input line 329.
+(Font)              using `JT2/mc/bx/n' instead on input line ....
 LaTeX Font Info:    Font shape `JT2/mc/bx/n' in size <10> not available
-(Font)              Font shape `JT2/gt/m/n' tried instead on input line 329.
+(Font)              Font shape `JT2/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JT2/gt/m/n' will be
-(Font)              scaled to size 9.6222pt on input line 329.
+(Font)              scaled to size 9.6222pt on input line ....
 LaTeX Font Warning: Font shape `JY2/mc/bx/it' undefined
-(Font)              using `JY2/mc/bx/n' instead on input line 329.
+(Font)              using `JY2/mc/bx/n' instead on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/bx/n' in size <10> not available
-(Font)              Font shape `JY2/gt/m/n' tried instead on input line 329.
+(Font)              Font shape `JY2/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JY2/gt/m/n' will be
-(Font)              scaled to size 9.6222pt on input line 329.
+(Font)              scaled to size 9.6222pt on input line ....
 LDB: 
 LDB: Begin Processing ***** list,enumerate ***** on line ...
 LDB: ..... Change \UseInstanceName because of `<enumerate':
@@ -243,13 +243,13 @@ LDB: ......=>.. \UseInstanceValues  {item-label-text=\textbullet , text-font=\sf
 LDB: ..... Execute function because of `<list*<list*<list*<itemize':
 LDB: ......=>.. \UseInstanceValues  {item-label-text=??, text-font=\footnotesize \sffamily \slshape }
 LaTeX Font Info:    Font shape `JT2/mc/m/n' will be
-(Font)              scaled to size 7.69775pt on input line 333.
+(Font)              scaled to size 7.69775pt on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/m/n' will be
-(Font)              scaled to size 7.69775pt on input line 333.
+(Font)              scaled to size 7.69775pt on input line ....
 LaTeX Font Warning: Font shape `JT2/mc/m/sl' undefined
-(Font)              using `JT2/mc/m/n' instead on input line 333.
+(Font)              using `JT2/mc/m/n' instead on input line ....
 LaTeX Font Warning: Font shape `JY2/mc/m/sl' undefined
-(Font)              using `JY2/mc/m/n' instead on input line 333.
+(Font)              using `JY2/mc/m/n' instead on input line ....
 LDB: 
 LDB: Begin Processing ***** ,item ***** (sequenced) on line ...
 LDB: ..... Change \UseInstanceName because of `<item':
@@ -287,13 +287,13 @@ LDB: .......... item -> item
 LDB: ..... Change \l_xtemplate_type_tl because of `<item':
 LDB: .......... listitem -> listitem
 LaTeX Font Info:    Font shape `JT2/mc/bx/it' in size <10> not available
-(Font)              Font shape `JT2/gt/m/n' tried instead on input line 345.
+(Font)              Font shape `JT2/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JT2/gt/m/n' will be
-(Font)              scaled to size 9.6222pt on input line 345.
+(Font)              scaled to size 9.6222pt on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/bx/it' in size <10> not available
-(Font)              Font shape `JY2/gt/m/n' tried instead on input line 345.
+(Font)              Font shape `JY2/gt/m/n' tried instead on input line ....
 LaTeX Font Info:    Font shape `JY2/gt/m/n' will be
-(Font)              scaled to size 9.6222pt on input line 345.
+(Font)              scaled to size 9.6222pt on input line ....
 LDB: 
 LDB: Begin Processing ***** list,itemize ***** on line ...
 LDB: ..... Change \UseInstanceName because of `<itemize':
@@ -311,26 +311,26 @@ LDB: ......=>.. \UseInstanceValues  {left-margin=70pt}
 LDB: ..... Execute function because of `<list*<list*<itemize':
 LDB: ......=>.. \UseInstanceValues  {item-label-text=\textbullet , text-font=\sffamily \slshape }
 LaTeX Font Info:    Font shape `JT2/mc/m/it' will be
-(Font)              scaled to size 9.6222pt on input line 346.
+(Font)              scaled to size 9.6222pt on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/m/it' will be
-(Font)              scaled to size 9.6222pt on input line 346.
+(Font)              scaled to size 9.6222pt on input line ....
 LaTeX Font Warning: Font shape `OT1/cmss/m/it' in size <10> not available
-(Font)              Font shape `OT1/cmss/m/sl' tried instead on input line 346.
+(Font)              Font shape `OT1/cmss/m/sl' tried instead on input line ....
 LaTeX Font Info:    Font shape `JT2/mc/m/sl' will be
-(Font)              scaled to size 9.6222pt on input line 346.
+(Font)              scaled to size 9.6222pt on input line ....
 LaTeX Font Info:    Font shape `JY2/mc/m/sl' will be
-(Font)              scaled to size 9.6222pt on input line 346.
+(Font)              scaled to size 9.6222pt on input line ....
 LDB: 
 LDB: Begin Processing ***** ,item ***** (sequenced) on line ...
 LDB: ..... Change \UseInstanceName because of `<item':
 LDB: .......... itemize -> item
 LDB: ..... Change \l_xtemplate_type_tl because of `<item':
 LDB: .......... list -> listitem
-LaTeX Font Info:    Try loading font information for OMS+cmss on input line 347.
-LaTeX Font Info:    No file OMScmss.fd. on input line 347.
+LaTeX Font Info:    Try loading font information for OMS+cmss on input line ....
+LaTeX Font Info:    No file OMScmss.fd. on input line ....
 LaTeX Font Warning: Font shape `OMS/cmss/m/sl' undefined
 (Font)              using `OMS/cmsy/m/n' instead
-(Font)              for symbol `textbullet' on input line 347.
+(Font)              for symbol `textbullet' on input line ....
 LDB: 
 LDB: End Processing ***** ,item ***** on line ...
 LDB: 
diff --git a/l3trial/xbox/testfiles/xbox001.luatex.tlg b/l3trial/xbox/testfiles/xbox001.luatex.tlg
index 53821f0..d3b8fb4 100644
--- a/l3trial/xbox/testfiles/xbox001.luatex.tlg
+++ b/l3trial/xbox/testfiles/xbox001.luatex.tlg
@@ -85,9 +85,9 @@ TEST 2: \sbox
 <argument> \myboxa 
 l. ...  }
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 47.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 47.
+(Font)              <5> on input line ....
 > \box74=
 \hbox(5.83333+1.94444)x49.63992, direction TLT
 .\pdfcolorstack 0 push {0 g 0 G}
diff --git a/l3trial/xbox/testfiles/xbox001.ptex.tlg b/l3trial/xbox/testfiles/xbox001.ptex.tlg
index 2288bd8..dc241ce 100644
--- a/l3trial/xbox/testfiles/xbox001.ptex.tlg
+++ b/l3trial/xbox/testfiles/xbox001.ptex.tlg
@@ -85,9 +85,9 @@ TEST 2: \sbox
 <argument> \myboxa 
 l. ...  }
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 47.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 47.
+(Font)              <5> on input line ....
 > \box74=
 \hbox(5.83333+1.94444)x49.63992
 .\special{color push gray 0}
diff --git a/l3trial/xbox/testfiles/xbox001.tlg b/l3trial/xbox/testfiles/xbox001.tlg
index fbaeeec..672f6c0 100644
--- a/l3trial/xbox/testfiles/xbox001.tlg
+++ b/l3trial/xbox/testfiles/xbox001.tlg
@@ -85,9 +85,9 @@ TEST 2: \sbox
 <argument> \myboxa 
 l. ...  }
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 47.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 47.
+(Font)              <5> on input line ....
 > \box74=
 \hbox(5.83333+1.94444)x49.63992
 .\pdfcolorstack 0 push {0 g 0 G}
diff --git a/l3trial/xbox/testfiles/xbox001.uptex.tlg b/l3trial/xbox/testfiles/xbox001.uptex.tlg
index 2288bd8..dc241ce 100644
--- a/l3trial/xbox/testfiles/xbox001.uptex.tlg
+++ b/l3trial/xbox/testfiles/xbox001.uptex.tlg
@@ -85,9 +85,9 @@ TEST 2: \sbox
 <argument> \myboxa 
 l. ...  }
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 47.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 47.
+(Font)              <5> on input line ....
 > \box74=
 \hbox(5.83333+1.94444)x49.63992
 .\special{color push gray 0}
diff --git a/l3trial/xbox/testfiles/xbox001.xetex.tlg b/l3trial/xbox/testfiles/xbox001.xetex.tlg
index 42394f3..a06edb7 100644
--- a/l3trial/xbox/testfiles/xbox001.xetex.tlg
+++ b/l3trial/xbox/testfiles/xbox001.xetex.tlg
@@ -85,9 +85,9 @@ TEST 2: \sbox
 <argument> \myboxa 
 l. ...  }
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 47.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 47.
+(Font)              <5> on input line ....
 > \box74=
 \hbox(5.83333+1.94444)x49.63992
 .\special{color push gray 0}
diff --git a/l3trial/xbox/testfiles/xbox002.ptex.tlg b/l3trial/xbox/testfiles/xbox002.ptex.tlg
index f68689d..c5c5dd9 100644
--- a/l3trial/xbox/testfiles/xbox002.ptex.tlg
+++ b/l3trial/xbox/testfiles/xbox002.ptex.tlg
@@ -41,9 +41,9 @@ TEST 1: \mbox
 <argument> \myboxa 
 l. ...  }
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 32.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 32.
+(Font)              <5> on input line ....
 > \box72=
 \hbox(5.83333+1.94444)x49.63992
 .\special{color push gray 0}
diff --git a/l3trial/xbox/testfiles/xbox002.tlg b/l3trial/xbox/testfiles/xbox002.tlg
index 9eb2b2f..e46eec0 100644
--- a/l3trial/xbox/testfiles/xbox002.tlg
+++ b/l3trial/xbox/testfiles/xbox002.tlg
@@ -41,9 +41,9 @@ TEST 1: \mbox
 <argument> \myboxa 
 l. ...  }
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 32.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 32.
+(Font)              <5> on input line ....
 > \box72=
 \hbox(5.83333+1.94444)x49.63992
 .\pdfcolorstack 0 push {0 g 0 G}
diff --git a/l3trial/xbox/testfiles/xbox002.uptex.tlg b/l3trial/xbox/testfiles/xbox002.uptex.tlg
index f68689d..c5c5dd9 100644
--- a/l3trial/xbox/testfiles/xbox002.uptex.tlg
+++ b/l3trial/xbox/testfiles/xbox002.uptex.tlg
@@ -41,9 +41,9 @@ TEST 1: \mbox
 <argument> \myboxa 
 l. ...  }
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 32.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 32.
+(Font)              <5> on input line ....
 > \box72=
 \hbox(5.83333+1.94444)x49.63992
 .\special{color push gray 0}
diff --git a/l3trial/xbox/testfiles/xbox002.xetex.tlg b/l3trial/xbox/testfiles/xbox002.xetex.tlg
index f68689d..c5c5dd9 100644
--- a/l3trial/xbox/testfiles/xbox002.xetex.tlg
+++ b/l3trial/xbox/testfiles/xbox002.xetex.tlg
@@ -41,9 +41,9 @@ TEST 1: \mbox
 <argument> \myboxa 
 l. ...  }
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <7> on input line 32.
+(Font)              <7> on input line ....
 LaTeX Font Info:    External font `cmex10' loaded for size
-(Font)              <5> on input line 32.
+(Font)              <5> on input line ....
 > \box72=
 \hbox(5.83333+1.94444)x49.63992
 .\special{color push gray 0}

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


More information about the latex3-commits mailing list