diff --git a/base/changes.txt b/base/changes.txt index 269ab7ea7..6337d41e2 100644 --- a/base/changes.txt +++ b/base/changes.txt @@ -6,6 +6,13 @@ to completeness or accuracy and it contains some references to files that are not part of the distribution. ================================================================================ +2024-07-06 Yukai Chou + + * ltcmd.dtx (subsection{User functions}): + Trim spaces for envname before existence check (gh/1399) + (subsection{Declaring commands and environments}): + Simplify \__cmd_declare_env:nnnn, use space-trimmed envname directly + 2024-06-23 Yukai Chou * ltpara.dtx diff --git a/base/doc/ltnews40.tex b/base/doc/ltnews40.tex index a0bbb2700..2e2c1cfa4 100644 --- a/base/doc/ltnews40.tex +++ b/base/doc/ltnews40.tex @@ -198,6 +198,24 @@ \subsection{Fix wrong file type in a rollback warning} % \githubissue{870} +\subsection*{Fix existence check of document environments} +\cs{NewDocumentEnvironment} and friends define (or redefine) a document +environment using the space-trimmed \meta{envname}, but the existence +check for \meta{envname} was done without space trimming. Thus when the +user-specified \meta{envname} consists of leading and/or trailing +space(s), it may lead to erroneously silent environment declaration. +For example, in +\begin{verbatim} + \NewDocumentEnvironment{myenv}{}{begin}{end} + \NewDocumentEnvironment{ myenv }{}{begin}{end} +\end{verbatim} +the first line defines a new environment \env{myenv} but the second +line would check existence for \env{ myenv } (which is not yet defined), +then redefine \env{myenv} environment without raising any errors. +This has now been corrected. +% +\githubissue{1399} + \subsection{\pkg{doc}:\ \cs{PrintDescribeMacro} in preamble} In \pkg{doc} version 2 it was possible alter the definition of diff --git a/base/ltcmd.dtx b/base/ltcmd.dtx index 69bd162e5..66d86ad5f 100644 --- a/base/ltcmd.dtx +++ b/base/ltcmd.dtx @@ -34,8 +34,8 @@ %%% From File: ltcmd.dtx % % \begin{macrocode} -\def\ltcmdversion{v1.2e} -\def\ltcmddate{2024-04-17} +\def\ltcmdversion{v1.2f} +\def\ltcmddate{2024-07-06} % \end{macrocode} % %<*driver> @@ -620,31 +620,51 @@ % \end{macro} % \end{macro} % -% \begin{macro}{\@@_declare_env:nnnn} +% \begin{macro}{\@@_declare_env:nnnn, \@@_declare_env:ennn} +% \changes{v1.2f}{2024/07/06}{Use space-trimmed envname directly} % \begin{macro}{\@@_declare_env_internal:nnnn} +% \begin{macro}{\@@_set_environment_end:n} % The lead-off to creating an environment is much the same as that for % creating a command: issue the appropriate message, store the argument % specification then hand off to an internal function. % \begin{macrocode} +%\IncludeInRelease{2024/11/01}{\@@_declare_env:nnnn}% +% {Use~space-trimmed~envname~directly} \cs_new_protected:Npn \@@_declare_env:nnnn #1#2 { - \str_set:Nx \l_@@_environment_str {#1} - \str_set:Nx \l_@@_environment_str - { \tl_trim_spaces:o { \l_@@_environment_str } } - \cs_if_exist:cTF { \l_@@_environment_str } - { - \msg_info:nnxx { cmd } { redefine-env } - { \l_@@_environment_str } { \tl_to_str:n {#2} } - } - { - \msg_info:nnxx { cmd } { define-env } - { \l_@@_environment_str } { \tl_to_str:n {#2} } - } + \str_set:Nn \l_@@_environment_str {#1} + \cs_if_exist:cTF { #1 } + { \msg_info:nnnn { cmd } { redefine-env } { #1 } { #2 } } + { \msg_info:nnnn { cmd } { define-env } { #1 } { #2 } } \bool_set_false:N \l_@@_expandable_bool \bool_set_true:N \l_@@_environment_bool - \exp_args:NV \@@_declare_env_internal:nnnn - \l_@@_environment_str {#2} + \@@_declare_env_internal:nnnn {#1} {#2} } +\cs_generate_variant:Nn \@@_declare_env:nnnn { e } +%\EndIncludeInRelease +%\IncludeInRelease{2024/06/01}{\@@_declare_env:nnnn}% +% {Use~space-trimmed~envname~directly} +%\cs_new_protected:Npn \@@_declare_env:nnnn #1#2 +% { +% \str_set:Nx \l_@@_environment_str {#1} +% \str_set:Nx \l_@@_environment_str +% { \tl_trim_spaces:o { \l_@@_environment_str } } +% \cs_if_exist:cTF { \l_@@_environment_str } +% { +% \msg_info:nnxx { cmd } { redefine-env } +% { \l_@@_environment_str } { \tl_to_str:n {#2} } +% } +% { +% \msg_info:nnxx { cmd } { define-env } +% { \l_@@_environment_str } { \tl_to_str:n {#2} } +% } +% \bool_set_false:N \l_@@_expandable_bool +% \bool_set_true:N \l_@@_environment_bool +% \exp_args:NV \@@_declare_env_internal:nnnn +% \l_@@_environment_str {#2} +% } +% +%\EndIncludeInRelease % \end{macrocode} % Creating a document environment requires a few more steps than creating % a single command. In order to pass the arguments of the command to the @@ -685,6 +705,7 @@ % \end{macrocode} % \end{macro} % \end{macro} +% \end{macro} % % \subsection{Structure of \pkg{xparse} commands} % @@ -5022,36 +5043,109 @@ % % \begin{macro}{\NewDocumentEnvironment} % \changes{v1.0h}{2021/08/27}{Check for end-of-environment command} +% \changes{v1.0h}{2024/07/06}{Trim spaces from envname first} % \begin{macro}{\RenewDocumentEnvironment} % \begin{macro}{\ProvideDocumentEnvironment} % \begin{macro}{\DeclareDocumentEnvironment} -% Very similar for environments. -% \begin{macrocode} +% \begin{macro}{\@@_new_env:nnnn, \@@_renew_env:nnnn, \@@_provide_env:nnnn} +% \begin{macro}{\@@_new_env:ennn, \@@_renew_env:ennn, \@@_provide_env:ennn} +% Very similar for environments. Trim spaces from user-specified +% \meta{envname}, do existence check then hand off to +% \cs{@@_declare_env:nnnn}. +% \begin{macrocode} +%\IncludeInRelease{2024/11/01}{\NewDocumentEnvironment}% +% {Trim~spaces~from~envname~first} \cs_new_protected:Npn \NewDocumentEnvironment #1#2#3#4 + { + \@@_new_env:ennn { \tl_trim_spaces:e {#1} } {#2} {#3} {#4} + } +\cs_new_protected:Npn \RenewDocumentEnvironment #1#2#3#4 + { + \@@_renew_env:ennn { \tl_trim_spaces:e {#1} } {#2} {#3} {#4} + } +\cs_new_protected:Npn \ProvideDocumentEnvironment #1#2#3#4 + { + \@@_provide_env:ennn { \tl_trim_spaces:e {#1} } {#2} {#3} {#4} + } +\cs_new_protected:Npn \DeclareDocumentEnvironment #1#2#3#4 + { + \@@_declare_env:ennn { \tl_trim_spaces:e {#1} } {#2} {#3} {#4} + } +% \end{macrocode} +% Each of \cs[no-index]{@@_(new|renew|provide)_env:nnnn} is curried. +% \begin{macrocode} +\cs_new_protected:Npn \@@_new_env:nnnn #1 { \cs_if_exist:cTF {#1} - { \msg_error:nnx { cmd } { env-already-defined } {#1} } + { + \msg_error:nnx { cmd } { env-already-defined } {#1} + \use_none:nnn + } { \cs_if_exist:cTF { end #1 } - { \msg_error:nnx { cmd } { env-end-already-defined } {#1} } - { \@@_declare_env:nnnn {#1} {#2} {#3} {#4} } + { + \msg_error:nnx { cmd } { env-end-already-defined } {#1} + \use_none:nnn + } + { \@@_declare_env:nnnn {#1} } } } -\cs_new_protected:Npn \RenewDocumentEnvironment #1#2#3#4 +\cs_new_protected:Npn \@@_renew_env:nnnn #1 { \cs_if_exist:cTF {#1} - { \@@_declare_env:nnnn {#1} {#2} {#3} {#4} } - { \msg_error:nnx { cmd } { env-undefined } {#1} } + { \@@_declare_env:nnnn {#1} } + { + \msg_error:nnx { cmd } { env-undefined } {#1} + \use_none:nnn + } } -\cs_new_protected:Npn \ProvideDocumentEnvironment #1#2#3#4 - { \cs_if_exist:cF {#1} { \@@_declare_env:nnnn {#1} {#2} {#3} {#4} } } -\cs_new_protected:Npn \DeclareDocumentEnvironment #1#2#3#4 - { \@@_declare_env:nnnn {#1} {#2} {#3} {#4} } +\cs_new_protected:Npn \@@_provide_env:nnnn #1 + { + \cs_if_exist:cTF {#1} + { \use_none:nnn } + { \@@_declare_env:nnnn {#1} } + } +\cs_generate_variant:Nn \@@_new_env:nnnn { e } +\cs_generate_variant:Nn \@@_renew_env:nnnn { e } +\cs_generate_variant:Nn \@@_provide_env:nnnn { e } +%\EndIncludeInRelease +%\IncludeInRelease{2024/06/01}{\NewDocumentEnvironment}% +% {Trim~spaces~from~envname~first} +%\cs_new_protected:Npn \NewDocumentEnvironment #1#2#3#4 +% { +% \cs_if_exist:cTF {#1} +% { \msg_error:nnx { cmd } { env-already-defined } {#1} } +% { +% \cs_if_exist:cTF { end #1 } +% { \msg_error:nnx { cmd } { env-end-already-defined } {#1} } +% { \@@_declare_env:nnnn {#1} {#2} {#3} {#4} } +% } +% } +%\cs_new_protected:Npn \RenewDocumentEnvironment #1#2#3#4 +% { +% \cs_if_exist:cTF {#1} +% { \@@_declare_env:nnnn {#1} {#2} {#3} {#4} } +% { \msg_error:nnx { cmd } { env-undefined } {#1} } +% } +%\cs_new_protected:Npn \ProvideDocumentEnvironment #1#2#3#4 +% { \cs_if_exist:cF {#1} { \@@_declare_env:nnnn {#1} {#2} {#3} {#4} } } +%\cs_new_protected:Npn \DeclareDocumentEnvironment #1#2#3#4 +% { \@@_declare_env:nnnn {#1} {#2} {#3} {#4} } +%\cs_undefine:N \@@_new_env:nnnn +%\cs_undefine:N \@@_new_env:ennn +%\cs_undefine:N \@@_renew_env:nnnn +%\cs_undefine:N \@@_renew_env:ennn +%\cs_undefine:N \@@_provide_env:nnnn +%\cs_undefine:N \@@_provide_env:ennn +% +%\EndIncludeInRelease % \end{macrocode} % \end{macro} % \end{macro} % \end{macro} % \end{macro} +% \end{macro} +% \end{macro} % % \begin{macro}{\NewExpandableDocumentCommand} % \begin{macro}{\RenewExpandableDocumentCommand} diff --git a/base/testfiles-ltcmd/ltcmd001.lvt b/base/testfiles-ltcmd/ltcmd001.lvt index a668c1249..8f3cc11f0 100644 --- a/base/testfiles-ltcmd/ltcmd001.lvt +++ b/base/testfiles-ltcmd/ltcmd001.lvt @@ -222,15 +222,18 @@ \DeclareDocumentEnvironment { foo } { } { } { } \TIMO \NewDocumentEnvironment { foo } { } { } { } + \NewDocumentEnvironment { ~foo } { } { } { } % see gh1399 \OMIT \cs_undefine:N \environment_begin_foo:w \cs_undefine:N \foo \TIMO \RenewDocumentEnvironment { foo } { } { } { } + \RenewDocumentEnvironment { foo~ } { } { } { } \OMIT \DeclareDocumentEnvironment { foo } { } { First } { First } \TIMO \ProvideDocumentEnvironment { foo } { } { Second } { Second } + \ProvideDocumentEnvironment { ~foo~ } { } { Second } { Second } \xparse_show_env:n { foo } } diff --git a/base/testfiles-ltcmd/ltcmd001.tlg b/base/testfiles-ltcmd/ltcmd001.tlg index 3d7d3a5df..0833b5b9b 100644 --- a/base/testfiles-ltcmd/ltcmd001.tlg +++ b/base/testfiles-ltcmd/ltcmd001.tlg @@ -429,6 +429,20 @@ l. ...} You have used \NewDocumentEnvironment with an environment that already has a definition. The existing definition of 'foo' will not be altered. +! LaTeX cmd Error: Environment 'foo' already defined. +For immediate help type H . + ... +l. ...} +You have used \NewDocumentEnvironment with an environment that already has a +definition. +The existing definition of 'foo' will not be altered. +! LaTeX cmd Error: Environment 'foo' undefined. +For immediate help type H . + ... +l. ...} +You have used \RenewDocumentEnvironment with an environment that was never +defined. +LaTeX will ignore this entire definition. ! LaTeX cmd Error: Environment 'foo' undefined. For immediate help type H . ... diff --git a/base/testfiles-lthooks/lthooks-rollback-args.tlg b/base/testfiles-lthooks/lthooks-rollback-args.tlg index 31b1ffdba..c5881a65f 100644 --- a/base/testfiles-lthooks/lthooks-rollback-args.tlg +++ b/base/testfiles-lthooks/lthooks-rollback-args.tlg @@ -100,6 +100,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -116,6 +118,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/github-0479-often.luatex.tlg b/base/testfiles/github-0479-often.luatex.tlg index 1d700b2ce..8a9feda60 100644 --- a/base/testfiles/github-0479-often.luatex.tlg +++ b/base/testfiles/github-0479-often.luatex.tlg @@ -110,6 +110,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -126,6 +128,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/github-0479-often.tlg b/base/testfiles/github-0479-often.tlg index ab143860f..1fff3eec1 100644 --- a/base/testfiles/github-0479-often.tlg +++ b/base/testfiles/github-0479-often.tlg @@ -100,6 +100,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -116,6 +118,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/github-0479-often.xetex.tlg b/base/testfiles/github-0479-often.xetex.tlg index d90ab784b..c6abff20e 100644 --- a/base/testfiles/github-0479-often.xetex.tlg +++ b/base/testfiles/github-0479-often.xetex.tlg @@ -100,6 +100,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -116,6 +118,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg index 80feaa68d..46f4271d0 100644 --- a/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg @@ -92,6 +92,8 @@ Applying: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -108,6 +110,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Applying: [....-..-..] Document command parser on input line .... @@ -885,6 +889,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -901,6 +907,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Applying: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.tlg index 210eb60bc..389c95c45 100644 --- a/base/testfiles/tlb-latexrelease-rollback-003-often.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-003-often.tlg @@ -86,6 +86,8 @@ Applying: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -102,6 +104,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Applying: [....-..-..] Document command parser on input line .... @@ -869,6 +873,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -885,6 +891,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Applying: [....-..-..] Document command parser 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 84b4bcfa2..ec8f37c0b 100644 --- a/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg @@ -86,6 +86,8 @@ Applying: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -102,6 +104,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Applying: [....-..-..] Document command parser on input line .... @@ -878,6 +882,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -894,6 +900,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Applying: [....-..-..] Document command parser 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 17bc39a19..16e1cb208 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg @@ -110,6 +110,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -126,6 +128,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 ab0a24aff..550585670 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg @@ -100,6 +100,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -116,6 +118,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 d8d1abbd7..dde6dda67 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg @@ -100,6 +100,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -116,6 +118,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 3fee80b96..ac293018e 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg @@ -111,6 +111,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -127,6 +129,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 518feced7..7cdacec25 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg @@ -100,6 +100,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -116,6 +118,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 cacff689a..62f460fcd 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg @@ -100,6 +100,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -116,6 +118,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 08d4cb55d..67d10e0a5 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg @@ -111,6 +111,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -127,6 +129,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 6824dfa6d..b6fe9064b 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg @@ -100,6 +100,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -116,6 +118,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 91f9884ef..51a7eb2bc 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg @@ -100,6 +100,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -116,6 +118,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 e3a4a5d8f..5e9d7e88c 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.luatex.tlg @@ -112,6 +112,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -128,6 +130,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 847111d46..94b620446 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg @@ -101,6 +101,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -117,6 +119,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 609df7115..f79691f24 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg @@ -101,6 +101,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -117,6 +119,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 05ddd4411..ae396851a 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.luatex.tlg @@ -112,6 +112,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -128,6 +130,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 7239caa49..35df46104 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg @@ -101,6 +101,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -117,6 +119,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser 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 b90f3d3df..935eaf96b 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg @@ -101,6 +101,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -117,6 +119,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.luatex.tlg index e3ccb0415..a56b922eb 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.luatex.tlg @@ -112,6 +112,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -128,6 +130,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.tlg index 9305b3e20..1304db22b 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.tlg @@ -101,6 +101,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -117,6 +119,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.xetex.tlg index 1cedf717d..fab2e8950 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.xetex.tlg @@ -101,6 +101,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -117,6 +119,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.luatex.tlg index 0985b2a1c..a05359153 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.luatex.tlg @@ -112,6 +112,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -128,6 +130,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.tlg index fcd0c9f59..7b8dfcb18 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.tlg @@ -101,6 +101,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -117,6 +119,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.xetex.tlg index a01b2d691..92b35f5d0 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.xetex.tlg @@ -101,6 +101,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -117,6 +119,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.luatex.tlg index b7fbe820e..5e47684c1 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.luatex.tlg @@ -112,6 +112,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Applying: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -128,6 +130,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... Already applied: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Applying: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.tlg index b04e273d6..4207fc526 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.tlg @@ -101,6 +101,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Applying: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -117,6 +119,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... Already applied: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Applying: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.xetex.tlg index 698421f17..8d15a091e 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.xetex.tlg @@ -101,6 +101,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Applying: [....-..-..] Use space-trimmed envname directly on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Already applied: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -117,6 +119,8 @@ Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Already applied: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... Already applied: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Applying: [....-..-..] Trim spaces from envname first on input line .... Applying: [....-..-..] Testing for empty or blank on input line .... Already applied: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-rollback-004-often.luatex.tlg b/base/testfiles/tlb-rollback-004-often.luatex.tlg index 6e7825dce..c765be078 100644 --- a/base/testfiles/tlb-rollback-004-often.luatex.tlg +++ b/base/testfiles/tlb-rollback-004-often.luatex.tlg @@ -111,6 +111,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -127,6 +129,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Applying: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-rollback-004-often.tlg b/base/testfiles/tlb-rollback-004-often.tlg index fd697500f..3a414e810 100644 --- a/base/testfiles/tlb-rollback-004-often.tlg +++ b/base/testfiles/tlb-rollback-004-often.tlg @@ -100,6 +100,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -116,6 +118,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Applying: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-rollback-004-often.xetex.tlg b/base/testfiles/tlb-rollback-004-often.xetex.tlg index e4a58eae5..acff7ab8c 100644 --- a/base/testfiles/tlb-rollback-004-often.xetex.tlg +++ b/base/testfiles/tlb-rollback-004-often.xetex.tlg @@ -100,6 +100,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -116,6 +118,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Applying: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-rollback-005.luatex.tlg b/base/testfiles/tlb-rollback-005.luatex.tlg index 6268e5189..d3e264767 100644 --- a/base/testfiles/tlb-rollback-005.luatex.tlg +++ b/base/testfiles/tlb-rollback-005.luatex.tlg @@ -114,6 +114,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -130,6 +132,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-rollback-005.tlg b/base/testfiles/tlb-rollback-005.tlg index 3ebd12079..5027424e6 100644 --- a/base/testfiles/tlb-rollback-005.tlg +++ b/base/testfiles/tlb-rollback-005.tlg @@ -104,6 +104,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -120,6 +122,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line .... diff --git a/base/testfiles/tlb-rollback-005.xetex.tlg b/base/testfiles/tlb-rollback-005.xetex.tlg index 49dc841d9..d150f9b25 100644 --- a/base/testfiles/tlb-rollback-005.xetex.tlg +++ b/base/testfiles/tlb-rollback-005.xetex.tlg @@ -104,6 +104,8 @@ Already applied: [....-..-..] Make various commands robust on input line .... BEGIN module: ltcmd (....-..-..) on input line .... Document command parser. Skipping module ltcmd on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... +Skipping: [....-..-..] Use space-trimmed envname directly on input line .... Skipping: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Applying: [....-..-..] Support \NewCommandCopy in ltcmd on input line .... Skipping: [....-..-..] Distinguish non-expandable document commands on input line .... @@ -120,6 +122,8 @@ Skipping: [....-..-..] Support \ShowCommand in ltcmd on input line .... Applying: [....-..-..] Support \ShowCommand in ltcmd on input line .... Skipping: [....-..-..] Endlines as \obeyedline on input line .... Applying: [....-..-..] Endlines as \obeyedline on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... +Skipping: [....-..-..] Trim spaces from envname first on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Testing for empty or blank on input line .... Skipping: [....-..-..] Document command parser on input line ....