[latex3-commits] [latex3/latex2e] develop: updates for #1059 (dfe15a8a)
github at latex-project.org
github at latex-project.org
Sun May 14 10:26:38 CEST 2023
Repository : https://github.com/latex3/latex2e
On branch : develop
Link : https://github.com/latex3/latex2e/commit/dfe15a8a55874bd07124e3dd5eefa5c28abc8ca5
>---------------------------------------------------------------
commit dfe15a8a55874bd07124e3dd5eefa5c28abc8ca5
Author: David Carlisle <d.p.carlisle at gmail.com>
Date: Sat May 13 13:37:29 2023 +0100
updates for #1059
>---------------------------------------------------------------
dfe15a8a55874bd07124e3dd5eefa5c28abc8ca5
base/changes.txt | 5 +++++
base/doc/ltnews37.tex | 8 ++++++-
base/ltmath.dtx | 23 ++++++++++++++++++--
base/testfiles-lthooks/lthooks-rollback-args.tlg | 2 ++
base/testfiles/github-0479-often.luatex.tlg | 2 ++
base/testfiles/github-0479-often.tlg | 2 ++
base/testfiles/github-0479-often.xetex.tlg | 2 ++
base/testfiles/github-1059.lvt | 25 ++++++++++++++++++++++
base/testfiles/github-1059.tlg | 8 +++++++
.../tlb-latexrelease-rollback-003-often.luatex.tlg | 4 ++++
.../tlb-latexrelease-rollback-003-often.tlg | 4 ++++
.../tlb-latexrelease-rollback-003-often.xetex.tlg | 4 ++++
...tlb-latexrelease-rollback-2020-10-01.luatex.tlg | 2 ++
.../tlb-latexrelease-rollback-2020-10-01.tlg | 2 ++
.../tlb-latexrelease-rollback-2020-10-01.xetex.tlg | 2 ++
...tlb-latexrelease-rollback-2021-06-01.luatex.tlg | 2 ++
.../tlb-latexrelease-rollback-2021-06-01.tlg | 2 ++
.../tlb-latexrelease-rollback-2021-06-01.xetex.tlg | 2 ++
...tlb-latexrelease-rollback-2021-11-15.luatex.tlg | 2 ++
.../tlb-latexrelease-rollback-2021-11-15.tlg | 2 ++
.../tlb-latexrelease-rollback-2021-11-15.xetex.tlg | 2 ++
...tlb-latexrelease-rollback-2022-06-01.luatex.tlg | 2 ++
.../tlb-latexrelease-rollback-2022-06-01.tlg | 2 ++
.../tlb-latexrelease-rollback-2022-06-01.xetex.tlg | 2 ++
...tlb-latexrelease-rollback-2022-11-01.luatex.tlg | 2 ++
.../tlb-latexrelease-rollback-2022-11-01.tlg | 2 ++
.../tlb-latexrelease-rollback-2022-11-01.xetex.tlg | 2 ++
base/testfiles/tlb-rollback-004-often.luatex.tlg | 2 ++
base/testfiles/tlb-rollback-004-often.tlg | 2 ++
base/testfiles/tlb-rollback-004-often.xetex.tlg | 2 ++
base/testfiles/tlb-rollback-005.luatex.tlg | 2 ++
base/testfiles/tlb-rollback-005.tlg | 2 ++
base/testfiles/tlb-rollback-005.xetex.tlg | 2 ++
33 files changed, 128 insertions(+), 3 deletions(-)
diff --git a/base/changes.txt b/base/changes.txt
index 9ad40e33..186c1fb9 100644
--- a/base/changes.txt
+++ b/base/changes.txt
@@ -6,6 +6,11 @@ completeness or accuracy and it contains some references to files that
are not part of the distribution.
================================================================================
+
+2023-05-13 David Carlisle <David.Carlisle at latex-project.org>
+
+ * ltmath.dtx: Add \ignorespaces to \eqno (gh/1059)
+
2023-04-19 Joseph Wright <joseph.wright at latex-project.org>
* ltfinal.dtx (subsection{Lccodes and uccodes}):
diff --git a/base/doc/ltnews37.tex b/base/doc/ltnews37.tex
index 1c54de58..a605c7c4 100644
--- a/base/doc/ltnews37.tex
+++ b/base/doc/ltnews37.tex
@@ -584,7 +584,13 @@ This has been fixed by correctly initializing the hook structure when
%
\githubissue{1052}
-
+\subsection{Ignoring space after \texttt{\$\$}}
+Space is normally ignored after a closing \texttt{\$\$},
+but internal latex font handling code could interfere if
+\cs{eqno} was used. \cs{eqno} and \cs{leqno} have been redefined
+to add \cs{ignorespaces} after the math group.
+%
+\githubissue{1059}
\section{Documentation improvements}
diff --git a/base/ltmath.dtx b/base/ltmath.dtx
index 746a3077..3b1518dd 100644
--- a/base/ltmath.dtx
+++ b/base/ltmath.dtx
@@ -38,7 +38,7 @@
%<*driver>
% \fi
\ProvidesFile{ltmath.dtx}
- [2022/09/07 v1.2m LaTeX Kernel (Math Setup)]
+ [2023/05/13 v1.2n LaTeX Kernel (Math Setup)]
% \iffalse
%</driver>
%
@@ -1132,9 +1132,29 @@
\fi
% \end{macrocode}
%
+% \begin{macro}{\eqno}
+% \begin{macro}{\leqno}
+% \changes{v1.2n}{2023/05/13}{add \cs{ignorespaces} gh/1059}
+% Ensure the (deprecated) \verb|$$..\eqno 1 $$| ignores spaces.
% \begin{macrocode}
%</2ekernel>
+%<*2ekernel|latexrelease>
+%<latexrelease>\IncludeInRelease{2023/06/01}%
+%<latexrelease> {\eqno}{add ignorespaces to eqno}%
+\let\@kernel at eqno\eqno
+\let\@kernel at leqno\leqno
+\protected\def\eqno{\@kernel at eqno\aftergroup\ignorespaces}
+\protected\def\leqno{\@kernel at leqno\aftergroup\ignorespaces}
+%</2ekernel|latexrelease>
+%<latexrelease>\EndIncludeInRelease
+%<latexrelease>\IncludeInRelease{0000/00/00}%
+%<latexrelease> {\eqno}{add ignorespaces to eqno}%
+%<latexrelease>\let\eqno\@kernel at eqno
+%<latexrelease>\let\leqno\@kernel at leqno
+%<latexrelease>\EndIncludeInRelease
% \end{macrocode}
+% \end{macro}
+% \end{macro}
%
%
%
@@ -1322,6 +1342,5 @@
% \end{environment}
%
%
-%
% \Finale
%
diff --git a/base/testfiles-lthooks/lthooks-rollback-args.tlg b/base/testfiles-lthooks/lthooks-rollback-args.tlg
index 2220b431..0a9a63db 100644
--- a/base/testfiles-lthooks/lthooks-rollback-args.tlg
+++ b/base/testfiles-lthooks/lthooks-rollback-args.tlg
@@ -527,6 +527,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/github-0479-often.luatex.tlg b/base/testfiles/github-0479-often.luatex.tlg
index e7f0a9c8..d91fd488 100644
--- a/base/testfiles/github-0479-often.luatex.tlg
+++ b/base/testfiles/github-0479-often.luatex.tlg
@@ -538,6 +538,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/github-0479-often.tlg b/base/testfiles/github-0479-often.tlg
index a43f08a2..88cc8f43 100644
--- a/base/testfiles/github-0479-often.tlg
+++ b/base/testfiles/github-0479-often.tlg
@@ -527,6 +527,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/github-0479-often.xetex.tlg b/base/testfiles/github-0479-often.xetex.tlg
index a8cd5887..d1fa626b 100644
--- a/base/testfiles/github-0479-often.xetex.tlg
+++ b/base/testfiles/github-0479-often.xetex.tlg
@@ -528,6 +528,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/github-1059.lvt b/base/testfiles/github-1059.lvt
new file mode 100644
index 00000000..6d3cf690
--- /dev/null
+++ b/base/testfiles/github-1059.lvt
@@ -0,0 +1,25 @@
+
+\documentclass{article}
+
+\input{test2e}
+
+\begin{document}
+
+$x$
+
+% These should all show -1 not 11 (glue)
+
+\START
+
+$$x$$
+\showthe\lastnodetype
+
+
+$$x \eqno 1$$
+\showthe\lastnodetype
+
+
+$$x \leqno 2$$
+\showthe\lastnodetype
+
+\END
\ No newline at end of file
diff --git a/base/testfiles/github-1059.tlg b/base/testfiles/github-1059.tlg
new file mode 100644
index 00000000..5a4d9eae
--- /dev/null
+++ b/base/testfiles/github-1059.tlg
@@ -0,0 +1,8 @@
+This is a generated file for the LaTeX2e validation system.
+Don't change this file in any respect.
+> -1.
+l. ...\showthe\lastnodetype
+> -1.
+l. ...\showthe\lastnodetype
+> -1.
+l. ...\showthe\lastnodetype
diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg
index 0b97d7f5..e9eb2a8e 100644
--- a/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg
@@ -478,6 +478,8 @@ Skipping: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] Make \[ robust on input line ....
Skipping: [....-..-..] eqnarray support calc syntax on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Skipping: [....-..-..] Make \makebox robust on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
Skipping: [....-..-..] default units on input line ....
@@ -1236,6 +1238,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Skipping: [....-..-..] eqnarray support calc syntax on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.tlg
index 7bcaa3e7..6c29fbaf 100644
--- a/base/testfiles/tlb-latexrelease-rollback-003-often.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-003-often.tlg
@@ -472,6 +472,8 @@ Skipping: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] Make \[ robust on input line ....
Skipping: [....-..-..] eqnarray support calc syntax on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Skipping: [....-..-..] Make \makebox robust on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
Skipping: [....-..-..] default units on input line ....
@@ -1220,6 +1222,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Skipping: [....-..-..] eqnarray support calc syntax on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg
index edd3a2ce..45232080 100644
--- a/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg
@@ -472,6 +472,8 @@ Skipping: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] Make \[ robust on input line ....
Skipping: [....-..-..] eqnarray support calc syntax on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Skipping: [....-..-..] Make \makebox robust on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
Skipping: [....-..-..] default units on input line ....
@@ -1229,6 +1231,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Skipping: [....-..-..] eqnarray support calc syntax on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg
index 2ff8af01..b90d3508 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg
@@ -538,6 +538,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg
index e0834420..a10978b1 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg
@@ -527,6 +527,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg
index fa002060..af627b6b 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg
@@ -528,6 +528,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg
index 050db2ee..271cf6e5 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg
@@ -539,6 +539,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg
index 9130ff08..9d324368 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg
@@ -527,6 +527,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg
index d345664e..28d0f43f 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg
@@ -528,6 +528,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg
index 2922f617..ea669227 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg
@@ -539,6 +539,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg
index e20d9566..28c71105 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg
@@ -527,6 +527,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg
index 4337976f..7429c752 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg
@@ -528,6 +528,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.luatex.tlg
index f6b59b49..7e1ae371 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.luatex.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.luatex.tlg
@@ -539,6 +539,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg
index dd7b6558..de6d1bf8 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg
@@ -527,6 +527,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg
index d4671101..19aca981 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg
@@ -528,6 +528,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.luatex.tlg
index bbd882dd..eaa1b7c4 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.luatex.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.luatex.tlg
@@ -539,6 +539,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg
index 80fb3772..6a99a3bf 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg
@@ -527,6 +527,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg
index b403740f..05966026 100644
--- a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg
+++ b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg
@@ -528,6 +528,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-rollback-004-often.luatex.tlg b/base/testfiles/tlb-rollback-004-often.luatex.tlg
index 33669a3a..aab45cb3 100644
--- a/base/testfiles/tlb-rollback-004-often.luatex.tlg
+++ b/base/testfiles/tlb-rollback-004-often.luatex.tlg
@@ -533,6 +533,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Skipping: [....-..-..] eqnarray support calc syntax on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-rollback-004-often.tlg b/base/testfiles/tlb-rollback-004-often.tlg
index 87a39457..8ac21136 100644
--- a/base/testfiles/tlb-rollback-004-often.tlg
+++ b/base/testfiles/tlb-rollback-004-often.tlg
@@ -521,6 +521,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Skipping: [....-..-..] eqnarray support calc syntax on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-rollback-004-often.xetex.tlg b/base/testfiles/tlb-rollback-004-often.xetex.tlg
index 4668548c..943b62ee 100644
--- a/base/testfiles/tlb-rollback-004-often.xetex.tlg
+++ b/base/testfiles/tlb-rollback-004-often.xetex.tlg
@@ -522,6 +522,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Skipping: [....-..-..] eqnarray support calc syntax on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-rollback-005.luatex.tlg b/base/testfiles/tlb-rollback-005.luatex.tlg
index b481d7ae..c87f79d3 100644
--- a/base/testfiles/tlb-rollback-005.luatex.tlg
+++ b/base/testfiles/tlb-rollback-005.luatex.tlg
@@ -542,6 +542,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-rollback-005.tlg b/base/testfiles/tlb-rollback-005.tlg
index efc6229b..b9348a14 100644
--- a/base/testfiles/tlb-rollback-005.tlg
+++ b/base/testfiles/tlb-rollback-005.tlg
@@ -531,6 +531,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
diff --git a/base/testfiles/tlb-rollback-005.xetex.tlg b/base/testfiles/tlb-rollback-005.xetex.tlg
index b27566b1..283a0e84 100644
--- a/base/testfiles/tlb-rollback-005.xetex.tlg
+++ b/base/testfiles/tlb-rollback-005.xetex.tlg
@@ -532,6 +532,8 @@ LaTeX Info: Redefining \] on input line ....
Already applied: [....-..-..] Make \[ robust on input line ....
Applying: [....-..-..] eqnarray support calc syntax on input line ....
Already applied: [....-..-..] eqnarray support calc syntax on input line ...
+Skipping: [....-..-..] add ignorespaces to eqno on input line ....
+Applying: [....-..-..] add ignorespaces to eqno on input line ....
Applying: [....-..-..] Make \makebox robust on input line ....
LaTeX Info: Redefining \makebox on input line ....
Already applied: [....-..-..] Make \makebox robust on input line ....
More information about the latex3-commits
mailing list.