Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add \expandableinput #1679

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions base/changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ to completeness or accuracy and it contains some references to files that are
not part of the distribution.
================================================================================

2025-01-26 Joseph Wright <Joseph.Wright@latex-project.org>
* ltexpl.dtx, usrguide.tex
Add \expandableinput
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There was the suggestion to use \ExpandableInput, not sure which is better or if there should/could be adifferent name

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wasn't sure if the name suggestion was all-lower or CamelCase - as this feels like a document command ...

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are "document commands" the CamelCase ones?


2025-02-21 Ulrike Fischer <Ulrike.Fischer@latex-project.org>
* lttagging.dtx: move declaration of marginpar sockets from latex-lab into lttagging.

Expand Down
14 changes: 14 additions & 0 deletions base/doc/ltnews41.tex
Original file line number Diff line number Diff line change
Expand Up @@ -545,6 +545,20 @@ \subsection{Improving the handling of \cs{label}, \cs{index}, and \cs{glossary}}
%
\githubissue{311}

\subsection{A version of \cs{input} for expansion contexts}

The \LaTeX{} definition of \cs{input} cannot be used in places where \TeX{} is
performing expansion: the classic example is at the start of a tabular cell.
There are a number of reasons for this: the key ones are that \cs{input}
records which files are read and provides pre- and post-file hooks.

To support the need to carry out file input in expansion contexts, we have now
added \cs{expandableinput}: this skips recording the file name and does not
apply any file hooks, but otherwise behaves like \cs{input}. In particular, it
still uses \cs{input@path} when doing file lookup (contrasting with the \TeX{}
primitive, which is internally available for programmers as \cs{@@input}).
%
\githubissue{514}

\section{Bug fixes}

Expand Down
17 changes: 16 additions & 1 deletion base/doc/usrguide.tex
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
\texttt{usrguide.tex} for full details.}%
}

\date{2025-02-01}
\date{2025-02-26}

\NewDocumentCommand\cs{m}{\texttt{\textbackslash\detokenize{#1}}}
\NewDocumentCommand\marg{m}{\arg{#1}}
Expand Down Expand Up @@ -1312,6 +1312,21 @@ \section{Expandable floating point (and other) calculations}
the values \cs{topskip} (\dimeval{\topskip}) and \cs{baselineskip}
(\dimeval{\baselineskip}) in the current document.

\section{Expandable \cs{input} equivalent}

\begin{decl}
|\expandableinput| \arg{filename} \\
\end{decl}
The \LaTeX{} definition of \cs{input} cannot be used in places where \TeX{} is
performing expansion: the classic example is at the start of a tabular cell.
There are a number of reasons for this: the key ones are that \cs{input}
records which files are read and provides pre- and post-file hooks.

To support the need to carry out file input in expansion contexts, the command
\cs{expandableinput} is available: this skips recording the file name and does
not apply any file hooks, but otherwise behaves like \cs{input}. In particular,
it still uses \cs{input@path} when doing file lookup.

\section{Case changing}

\begin{decl}
Expand Down
24 changes: 23 additions & 1 deletion base/ltexpl.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
%<*driver>
% \fi
\ProvidesFile{ltexpl.dtx}
[2024/04/17 v1.3h LaTeX Kernel (expl3-dependent code)]
[2025/02/26 v1.3i LaTeX Kernel (expl3-dependent code)]
% \iffalse
\documentclass{ltxdoc}
\GetFileInfo{ltexpl.dtx}
Expand Down Expand Up @@ -549,4 +549,26 @@
%<latexrelease>\EndIncludeInRelease
% \end{macrocode}
%
% \begin{macro}{\expandableinput}
% \changes{v1.3i}{2025/02/26}{Added document level name for \cs{file_input_raw:n} (gh/514)}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if it is called raw here then perhaps \rawinput might be a better choice on the document level.

Copy link
Member Author

@josephwright josephwright Feb 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was my initial thinking, but I wanted to see how it looked to others - and we had said 'expandable input' as a name (capitalisation not specified!)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"expandable" seems to make more sense than "rawl, does it not?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops: should be "raw" !

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As we discussed in the team meeting, getting general users to understand when they might need something expandable is hard - so I don't think there is a perfect name. I can live with \expandableinput, \ExpandableInput or \rawinput (or some others - things like \untrackedinput or \lowlevelinput would also make some sense). Basically we have to pick something :)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I'd prefer \ExpandableInput (camel case like \InputIfFileExists) \UntrackedInput would also work.

% \begin{macrocode}
%<*2ekernel|latexrelease>
%<latexrelease>\IncludeInRelease{2025/06/01}%
%<latexrelease> {\expandableinput}{Expandable input}%
\ExplSyntaxOn
\cs_new_eq:NN \expandableinput \file_input_raw:n
\ExplSyntaxOff
% \end{macrocode}
% \end{macro}
%
% \begin{macrocode}
%</2ekernel|latexrelease>
%<latexrelease>\EndIncludeInRelease
%<latexrelease>\IncludeInRelease{0000/00/00}%
%<latexrelease> {\expandableinput}{Expandable input}%
%<latexrelease>
%<latexrelease>\let\expandableinput\@undefined
%<latexrelease>\EndIncludeInRelease
% \end{macrocode}
%
% \Finale
2 changes: 2 additions & 0 deletions base/testfiles-lthooks/lthooks-rollback-args.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/github-0479-often.luatex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/github-0479-often.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/github-0479-often.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
4 changes: 4 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Skipping: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Skipping: [....-..-..] Make \@carcube long on input line ....
Expand Down Expand Up @@ -918,6 +920,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Skipping: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Skipping: [....-..-..] Make \@carcube long on input line ....
Expand Down
4 changes: 4 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-003-often.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Skipping: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Skipping: [....-..-..] Make \@carcube long on input line ....
Expand Down Expand Up @@ -902,6 +904,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Skipping: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Skipping: [....-..-..] Make \@carcube long on input line ....
Expand Down
4 changes: 4 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Skipping: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Skipping: [....-..-..] Make \@carcube long on input line ....
Expand Down Expand Up @@ -911,6 +913,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Skipping: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Skipping: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-004.luatex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ Applying: [....-..-..] Some pre-expansion commands on input line ....
Already applied: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-004.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Applying: [....-..-..] Some pre-expansion commands on input line ....
Already applied: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-004.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Applying: [....-..-..] Some pre-expansion commands on input line ....
Already applied: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Skipping: [....-..-..] Some pre-expansion commands on input line ....
Applying: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ Applying: [....-..-..] Some pre-expansion commands on input line ....
Already applied: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Applying: [....-..-..] Some pre-expansion commands on input line ....
Already applied: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Applying: [....-..-..] Some pre-expansion commands on input line ....
Already applied: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ Applying: [....-..-..] Some pre-expansion commands on input line ....
Already applied: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Applying: [....-..-..] Some pre-expansion commands on input line ....
Already applied: [....-..-..] Some pre-expansion commands on input line ....
Skipping: [....-..-..] Test for expl3 date on input line ....
Applying: [....-..-..] Test for expl3 date on input line ....
Skipping: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Expandable input on input line ....
Applying: [....-..-..] Allow "par" in \typeout on input line ....
Already applied: [....-..-..] Allow "par" in \typeout on input line ....
Applying: [....-..-..] Make \@carcube long on input line ....
Expand Down
Loading