From 94195995d70ec0bba21553edfb96ad0bf3962da4 Mon Sep 17 00:00:00 2001 From: Frank Mittelbach Date: Mon, 3 Feb 2025 11:57:28 +0100 Subject: [PATCH 1/8] docu fix for #1519 --- base/lthooks.dtx | 48 ++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/base/lthooks.dtx b/base/lthooks.dtx index 36eaa9a10..c405c5a8e 100644 --- a/base/lthooks.dtx +++ b/base/lthooks.dtx @@ -32,7 +32,7 @@ %<*driver> % \fi \ProvidesFile{lthooks.dtx} - [2025/01/03 v1.1l LaTeX Kernel (hooks)] + [2025/02/03 v1.1l LaTeX Kernel (hooks)] % \iffalse % \documentclass{l3doc} @@ -76,7 +76,7 @@ % Hooks are points in the code of commands or environments where it % is possible to add processing code into existing commands. This % can be done by different packages that do not know about each -% other and to allow for hopefully safe processing it is necessary +% other, and to allow for hopefully safe processing it is necessary % to sort different chunks of code added by different packages into % a suitable processing order. % @@ -113,7 +113,7 @@ % % With a few exceptions, hooks have to be declared before they can % be used. The exceptions are the generic hooks for commands and -% environments (executed at \cs{begin} and \cs{end}), and the +% environments (executed at \cs{begin} and \cs{end}), and the generic % hooks run when loading files (see section~\ref{sec:generic}). % % \begin{function}{\NewHook} @@ -249,6 +249,12 @@ % % \subsubsection{Using hooks in code} % +% Using a hook, that is executing the code that has been associated +% with it is only allowed if the hook has been previously declared +% with \cs{NewHook}. For performance reason there are no runtime +% checks for this and it is the responsibility of the programmer of a +% package to ensure that all hooks that are used in a package (with +% one of the commands in this section) are declared first. % % \begin{function}{\UseHook} % \begin{syntax} @@ -340,6 +346,16 @@ % % \subsubsection{Updating code for hooks} % +% In contrast to the commands from the previous section, declarations +% such as \cs{AddToHook} or \cs{DeclareHookRule} are allowed to be +% used even if the hook is not yet declared. The rationale is, that +% the hook declaration may be in some package that is loaded later or +% perhaps not loaded at all. +% +% A side effect of this design is that misspelling do not raise an +% error, but are simply regarded as declarations for hooks with a +% different name +% % \begin{function}{\AddToHook} % \begin{syntax} % \cs{AddToHook} \Arg{hook} \oarg{label} \Arg{code} @@ -740,11 +756,11 @@ % in others. % % Before the hook management system was introduced -% packages had to take elaborate precaution to determine of some other +% packages had to take elaborate precaution to determine if some other % package got loaded as well (before or after) and find some ways to % alter its behavior accordingly. In addition is was often the user's -% responsibility to load packages in the right order so that code -% added to hooks got added in the right order and some cases even +% responsibility to load packages in the right order so that alterations +% made by packages were done in the right order and some cases even % altering the loading order wouldn't resolve the conflicts. % % With the new hook management system it is now possible to define @@ -752,6 +768,20 @@ % packages and explicitly describe in which order they should be % processed. % +% The rules can be declared for hooks before the hook has been +% declared with \cs{NewHook} and they are allowed to refer to code +% labels that do not yet exist, e.g., because a package defining the +% code chunk with that label has not yet been loaded. +% When the hook code is finally sorted all rules that apply are acted +% upon, the others are ignored. +% +% This offers the neccessary flexibility to handle complicated +% relationships between code from different packages and set this up +% beforehand, whether or not the packages are actually loaded in a +% specific document. The downside of this is that missspellings of +% hook names or code labels will not raise any error, instead the rule +% will simply never apply! +% % \begin{function}{\DeclareHookRule} % \begin{syntax} % \cs{DeclareHookRule} \Arg{hook} \Arg{label1} \Arg{relation} \Arg{label2} @@ -916,7 +946,7 @@ % % % -% \subsubsection{Displaying hook code} +% \subsubsection{Displaying hook code}\label{sec:display-hooks} % % If one has to adjust the code execution in a hook using a hook % rule it is helpful to get some information about the code @@ -1032,7 +1062,9 @@ % \end{syntax} % Turn the debugging of hook code on or off. This displays most changes % made to the hook data structures. The output is rather coarse and -% not really intended for normal use. +% not really intended for normal use but helpful in case hooks do +% not work as expected. See also \ref{sec:display-hooks} for +% commands to inspect individual hooks. % \end{function} % % From 008286a533dcae2e4bb513a3c2283cf272ae619d Mon Sep 17 00:00:00 2001 From: Frank Mittelbach Date: Mon, 3 Feb 2025 12:19:29 +0100 Subject: [PATCH 2/8] spellchecking (US) and resulting rollback test file updates --- base/lthooks.dtx | 52 +++++++++---------- .../lthooks-rollback-args.tlg | 30 +++++------ ...atexrelease-rollback-2020-10-01.luatex.tlg | 30 +++++------ .../tlb-latexrelease-rollback-2020-10-01.tlg | 30 +++++------ ...latexrelease-rollback-2020-10-01.xetex.tlg | 30 +++++------ ...atexrelease-rollback-2021-06-01.luatex.tlg | 30 +++++------ .../tlb-latexrelease-rollback-2021-06-01.tlg | 30 +++++------ ...latexrelease-rollback-2021-06-01.xetex.tlg | 30 +++++------ ...atexrelease-rollback-2021-11-15.luatex.tlg | 30 +++++------ .../tlb-latexrelease-rollback-2021-11-15.tlg | 30 +++++------ ...latexrelease-rollback-2021-11-15.xetex.tlg | 30 +++++------ ...atexrelease-rollback-2022-06-01.luatex.tlg | 30 +++++------ .../tlb-latexrelease-rollback-2022-06-01.tlg | 30 +++++------ ...latexrelease-rollback-2022-06-01.xetex.tlg | 30 +++++------ ...atexrelease-rollback-2022-11-01.luatex.tlg | 30 +++++------ .../tlb-latexrelease-rollback-2022-11-01.tlg | 30 +++++------ ...latexrelease-rollback-2022-11-01.xetex.tlg | 30 +++++------ ...atexrelease-rollback-2023-06-01.luatex.tlg | 30 +++++------ .../tlb-latexrelease-rollback-2023-06-01.tlg | 30 +++++------ ...latexrelease-rollback-2023-06-01.xetex.tlg | 30 +++++------ ...atexrelease-rollback-2023-11-01.luatex.tlg | 30 +++++------ .../tlb-latexrelease-rollback-2023-11-01.tlg | 30 +++++------ ...latexrelease-rollback-2023-11-01.xetex.tlg | 30 +++++------ ...atexrelease-rollback-2024-06-01.luatex.tlg | 30 +++++------ .../tlb-latexrelease-rollback-2024-06-01.tlg | 30 +++++------ ...latexrelease-rollback-2024-06-01.xetex.tlg | 30 +++++------ ...atexrelease-rollback-2024-11-01.luatex.tlg | 30 +++++------ .../tlb-latexrelease-rollback-2024-11-01.tlg | 30 +++++------ ...latexrelease-rollback-2024-11-01.xetex.tlg | 30 +++++------ 29 files changed, 446 insertions(+), 446 deletions(-) diff --git a/base/lthooks.dtx b/base/lthooks.dtx index c405c5a8e..d04d91951 100644 --- a/base/lthooks.dtx +++ b/base/lthooks.dtx @@ -775,10 +775,10 @@ % When the hook code is finally sorted all rules that apply are acted % upon, the others are ignored. % -% This offers the neccessary flexibility to handle complicated +% This offers the necessary flexibility to handle complicated % relationships between code from different packages and set this up % beforehand, whether or not the packages are actually loaded in a -% specific document. The downside of this is that missspellings of +% specific document. The downside of this is that misspellings of % hook names or code labels will not raise any error, instead the rule % will simply never apply! % @@ -1698,7 +1698,7 @@ % will be replaced by \verb|arg-1|, \verb|#2| by \verb|arg-2| and so % on. If, at the point of usage, the programmer provides more % arguments than the hook is declared to take, the excess arguments -% are simply ignored by the hook. Behaviour is +% are simply ignored by the hook. Behavior is % unpredictable\footnote % {The hook \emph{will} take the declared number of arguments, and % what will happen depends on what was grabbed, and what the hook @@ -2911,7 +2911,7 @@ % code with arguments to a hook without prior knowledge of the number % of arguments of that hook, so \pkg{lthooks} assumes~9 until the % hook is properly declared and the number of arguments is known. -% \cs{@@_normalise_cs_args:nn} does the normalisation by using the +% \cs{@@_normalise_cs_args:nn} does the normalization by using the % \cs[no-index]{c_@@_\meta{hook}_parameter_tl} defined just above. % \begin{macrocode} \@@_normalise_cs_args:nn { _toplevel } {#1} @@ -3920,7 +3920,7 @@ % \begin{macro}{\@@_gput_undeclared_hook:nnn} % Often it may happen that a package $A$ defines a hook \verb=foo=, % but package $B$, that adds code to that hook, is loaded before $A$. -% In such case we need to add code to the hook before its declared. +% In such case we need to add code to the hook before it is declared. % An implicitly declared hook doesn't have arguments (in principle), % so use \cs{c_false_bool} here. % \begin{macrocode} @@ -3949,7 +3949,7 @@ % next-execution hooks does the same: it defers the code to % \cs{hook_gput_next_code:nn} if the generic hook was declared, or % to \cs{@@_gput_next_do:nn} otherwise. -% \changes{v1.0p}{2021/08/25}{Standardise generic hook names (gh/648)} +% \changes{v1.0p}{2021/08/25}{Standardize generic hook names (gh/648)} % \changes{v1.1d}{2023/05/21} % {Changes to allow support arguments in cmd hooks (cmd-args).} % \begin{macrocode} @@ -3973,7 +3973,7 @@ %\EndIncludeInRelease %\IncludeInRelease{2021/11/15} % {\@@_try_declaring_generic_hook:nnn} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\cs_gset_protected:Npn \@@_try_declaring_generic_hook:nnn #1 % { % \@@_try_declaring_generic_hook:wnTF #1 / / / \scan_stop: @@ -3994,7 +3994,7 @@ %\EndIncludeInRelease %\IncludeInRelease{2020/10/01} % {\@@_try_declaring_generic_hook:nnn} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\cs_new_protected:Npn % \@@_try_declaring_generic_hook:nnn #1 % { @@ -4182,7 +4182,7 @@ % \begin{macrocode} %\IncludeInRelease{2021/11/15} % {\@@_try_declaring_generic_hook:wn} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\prg_new_protected_conditional:Npnn % \@@_try_declaring_generic_hook:wn % #1 / #2 / #3 / #4 \scan_stop: #5 { TF } @@ -4286,10 +4286,10 @@ % executes the \meta{true} branch, otherwise \meta{false}. % \begin{macrocode} %\IncludeInRelease{2021/11/15}{\@@_if_file_hook:w} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\EndIncludeInRelease %\IncludeInRelease{2020/10/01}{\@@_if_file_hook:w} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\prg_new_conditional:Npnn \@@_if_file_hook:w % #1 / #2 / #3 \s_@@_mark { TF } % { @@ -4316,7 +4316,7 @@ % % \begin{macrocode} %\IncludeInRelease{2021/11/15}{\@@_file_hook_normalize:n} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\EndIncludeInRelease % \end{macrocode} % @@ -4328,7 +4328,7 @@ % have to be \verb|\AddToHook{file/./mypath//file.tex/after}|. % \begin{macrocode} %\IncludeInRelease{2020/10/01}{\@@_file_hook_normalize:n} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\cs_new:Npn \@@_file_hook_normalize:n #1 % { \@@_strip_double_slash:n {#1} } %\cs_new:Npn \@@_strip_double_slash:n #1 @@ -4375,7 +4375,7 @@ % \end{description} % \begin{macrocode} %\IncludeInRelease{2021/11/15}{\c_@@_generics_prop} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} \clist_map_inline:nn { cmd , env , file , package , class , include } { \tl_const:cn { c_@@_generic_#1/./before_tl } { + } @@ -4404,7 +4404,7 @@ % % \begin{macrocode} %\IncludeInRelease{2020/10/01}{\c_@@_generics_prop} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\prop_const_from_keyval:Nn \c_@@_generics_prop % {cmd=,env=,file=,package=,class=,include=} %\EndIncludeInRelease @@ -4418,13 +4418,13 @@ % (the |ii| and |iii| names are kept for the deprecation cycle): % \begin{macrocode} %\IncludeInRelease{2021/11/15}{\c_@@_generics_reversed_ii_prop} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\EndIncludeInRelease % \end{macrocode} % % \begin{macrocode} %\IncludeInRelease{2020/10/01}{\c_@@_generics_reversed_ii_prop} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\prop_const_from_keyval:Nn % \c_@@_generics_reversed_ii_prop {after=,end=} %\prop_const_from_keyval:Nn @@ -4584,7 +4584,7 @@ % \begin{macro}{\@@_cs_gput_right_fast:nnn,\@@_cs_gput_right_slow:nnn} % \begin{macro}{\@@_code_gset_auxi:nnnn,\@@_code_gset_auxi:eeen} % This macro is used to append code to the \verb|toplevel| and -% \verb|next| token lists, trating them correctly depending on their +% \verb|next| token lists, treating them correctly depending on their % number of arguments, and depending if the code being added should % have parameter tokens understood as parameters, or doubled to be % stored as parameter tokens. @@ -4641,7 +4641,7 @@ % Here we take the existing code in the macro, expand it with as many % arguments as it takes, then double the hashes so the code can be % reused. \pho{Maybe can be improved. The case of adding to an empty -% cs can be optimised by quickly checking \cs{cs_replacement_spec}.} +% cs can be optimized by quickly checking \cs{cs_replacement_spec}.} % \begin{macrocode} { \exp_args:NNo \exp_args:No \@@_double_hashes:n @@ -4733,7 +4733,7 @@ % \end{macro} % % \begin{macro}{\@@_normalise_cs_args:nn} -% This macro normalises the parameters of the macros +% This macro normalizes the parameters of the macros % \cs[no-index]{@@\meta{type}\textvisiblespace\meta{hook}} to take the % right number of arguments after a hook is declared. At this point % we know \cs[no-index]{c_@@_\meta{hook}_parameter_tl} exists, so use @@ -4793,7 +4793,7 @@ % \end{macrocode} % First, call \cs{@@_set_normalise_fn:nn} with the hook name to set % everything up, then we'll loop over the -% hook's code pool applying the normalisation above. After that's +% hook's code pool applying the normalization above. After that's % done, copy the temporary property list back to the hook's. % \begin{macrocode} \@@_set_normalise_fn:nn {#1} { Offending~label:~'##1' } @@ -6655,7 +6655,7 @@ % \changes{v1.1a}{2023/04/06} % {Changes to add hook arguments (hook-args).} % \changes{v1.1c}{2023/04/19} -% {Initialise hook structure when adding 'next' code (gh/1052).} +% {Initialize hook structure when adding 'next' code (gh/1052).} % \begin{macrocode} %\IncludeInRelease{2023/06/01}{\@@_gput_next_do:nn} % {Hooks~with~args} @@ -6770,7 +6770,7 @@ % % \begin{macrocode} %\IncludeInRelease{2021/11/15}{\hook_use:n} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\cs_new_protected:Npn \hook_use:n #1 % { % \tl_if_exist:cT { @@~#1 } @@ -6793,7 +6793,7 @@ % % \begin{macrocode} %\IncludeInRelease{2020/10/01}{\hook_use:n} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\cs_new_protected:Npn \hook_use:n #1 % { % \tl_if_exist:cTF { @@~#1 } @@ -6898,10 +6898,10 @@ % \cs{@@_preamble_hook:n} if so, then uses the hook. % \begin{macrocode} %\IncludeInRelease{2021/11/15}{\@@_use:wn} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\EndIncludeInRelease %\IncludeInRelease{2020/10/01}{\@@_use:wn} -% {Standardise~generic~hook~names} +% {Standardize~generic~hook~names} %\cs_new:Npn \@@_use:wn #1 / #2 \s_@@_mark #3 % { % \str_if_eq:nnTF {#1} { file } diff --git a/base/testfiles-lthooks/lthooks-rollback-args.tlg b/base/testfiles-lthooks/lthooks-rollback-args.tlg index f23c131eb..426d5057a 100644 --- a/base/testfiles-lthooks/lthooks-rollback-args.tlg +++ b/base/testfiles-lthooks/lthooks-rollback-args.tlg @@ -152,20 +152,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Applying: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -207,14 +207,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 165e75022..68c84b58a 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg @@ -162,20 +162,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Applying: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -217,14 +217,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 64e6f74b6..f633b5e0d 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg @@ -152,20 +152,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Applying: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -207,14 +207,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 618038e43..acfa1f34e 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg @@ -152,20 +152,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Applying: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -207,14 +207,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 4477392e6..f8c19a1ff 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg @@ -163,20 +163,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -218,14 +218,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 a15262c98..3fa47d466 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg @@ -152,20 +152,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -207,14 +207,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 6b0e11b67..4e5f60a03 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg @@ -152,20 +152,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -207,14 +207,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 6ee0fce9b..3f896cf17 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg @@ -163,20 +163,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -218,14 +218,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 cd9607d95..2707686ae 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg @@ -152,20 +152,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -207,14 +207,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 07d9675d2..dcb71d346 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg @@ -152,20 +152,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -207,14 +207,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 a0b75d576..458ad0c31 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.luatex.tlg @@ -164,20 +164,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -219,14 +219,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 d7e5b0daf..8701b3781 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg @@ -153,20 +153,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 f7a74f26f..62359bca0 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg @@ -153,20 +153,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 d2146bb85..e116ff8a0 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.luatex.tlg @@ -164,20 +164,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -219,14 +219,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 58bb1e330..182a06004 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg @@ -153,20 +153,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 480a40135..5a33e8804 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg @@ -153,20 +153,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 784feb5e2..8f316cc6f 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.luatex.tlg @@ -164,20 +164,20 @@ Already applied: [....-..-..] Providing hooks on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... @@ -219,14 +219,14 @@ Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args 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 4f8f6b2b2..c92aaa840 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.tlg @@ -153,20 +153,20 @@ Already applied: [....-..-..] Providing hooks on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args 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 7b9a35f72..0ee7de26c 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.xetex.tlg @@ -153,20 +153,20 @@ Already applied: [....-..-..] Providing hooks on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args 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 19b01d51f..f44d7f57c 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.luatex.tlg @@ -164,20 +164,20 @@ Already applied: [....-..-..] Providing hooks on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... @@ -219,14 +219,14 @@ Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args 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 66da87e9f..49b895568 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.tlg @@ -153,20 +153,20 @@ Already applied: [....-..-..] Providing hooks on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args 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 751c08419..7d6511019 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.xetex.tlg @@ -153,20 +153,20 @@ Already applied: [....-..-..] Providing hooks on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args 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 136493927..9820c7e23 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.luatex.tlg @@ -164,20 +164,20 @@ Already applied: [....-..-..] Providing hooks on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... @@ -219,14 +219,14 @@ Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args 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 1b5136c02..8874eb79e 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.tlg @@ -153,20 +153,20 @@ Already applied: [....-..-..] Providing hooks on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args 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 174d07546..178afcd80 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.xetex.tlg @@ -153,20 +153,20 @@ Already applied: [....-..-..] Providing hooks on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2024-11-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2024-11-01.luatex.tlg index 91ecd4ec9..15c6b5782 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2024-11-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2024-11-01.luatex.tlg @@ -164,20 +164,20 @@ Already applied: [....-..-..] Providing hooks on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... @@ -219,14 +219,14 @@ Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2024-11-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2024-11-01.tlg index 6ba84f4ea..d5a4f9590 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2024-11-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2024-11-01.tlg @@ -153,20 +153,20 @@ Already applied: [....-..-..] Providing hooks on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2024-11-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2024-11-01.xetex.tlg index 529834246..5ee32936f 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2024-11-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2024-11-01.xetex.tlg @@ -153,20 +153,20 @@ Already applied: [....-..-..] Providing hooks on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Applying: [....-..-..] Hooks with args on input line .... Already applied: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... From 562cd6d99060a7d31f8544743fbadebc7fc602a6 Mon Sep 17 00:00:00 2001 From: Frank Mittelbach Date: Mon, 3 Feb 2025 13:09:12 +0100 Subject: [PATCH 3/8] and a few more test files --- ...latexrelease-rollback-003-often.luatex.tlg | 60 +++++++++---------- .../tlb-latexrelease-rollback-003-often.tlg | 60 +++++++++---------- ...-latexrelease-rollback-003-often.xetex.tlg | 60 +++++++++---------- .../tlb-latexrelease-rollback-004.luatex.tlg | 30 +++++----- .../tlb-latexrelease-rollback-004.tlg | 30 +++++----- .../tlb-latexrelease-rollback-004.xetex.tlg | 30 +++++----- .../tlb-rollback-004-often.luatex.tlg | 30 +++++----- base/testfiles/tlb-rollback-004-often.tlg | 30 +++++----- .../tlb-rollback-004-often.xetex.tlg | 30 +++++----- base/testfiles/tlb-rollback-005.luatex.tlg | 30 +++++----- base/testfiles/tlb-rollback-005.tlg | 30 +++++----- base/testfiles/tlb-rollback-005.xetex.tlg | 30 +++++----- 12 files changed, 225 insertions(+), 225 deletions(-) diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg index 451694bc9..7c7222a20 100644 --- a/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg @@ -144,20 +144,20 @@ Skipping: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -199,14 +199,14 @@ Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -1007,20 +1007,20 @@ Skipping: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -1062,14 +1062,14 @@ Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.tlg index 333918ffc..28f4adc14 100644 --- a/base/testfiles/tlb-latexrelease-rollback-003-often.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-003-often.tlg @@ -138,20 +138,20 @@ Skipping: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -193,14 +193,14 @@ Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -991,20 +991,20 @@ Skipping: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -1046,14 +1046,14 @@ Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args 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 9660ad979..262c306c3 100644 --- a/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg @@ -138,20 +138,20 @@ Skipping: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -193,14 +193,14 @@ Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -1000,20 +1000,20 @@ Skipping: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -1055,14 +1055,14 @@ Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-004.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-004.luatex.tlg index 66209900d..df25fa96d 100644 --- a/base/testfiles/tlb-latexrelease-rollback-004.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-004.luatex.tlg @@ -164,20 +164,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -219,14 +219,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-004.tlg b/base/testfiles/tlb-latexrelease-rollback-004.tlg index 81d42c107..1a04b2b1f 100644 --- a/base/testfiles/tlb-latexrelease-rollback-004.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-004.tlg @@ -153,20 +153,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-004.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-004.xetex.tlg index 6d9cfb506..d35f3d477 100644 --- a/base/testfiles/tlb-latexrelease-rollback-004.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-004.xetex.tlg @@ -153,20 +153,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... Already applied: [....-..-..] Support cmd hooks on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -208,14 +208,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Already applied: [....-..-..] Standardise generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Already applied: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-rollback-004-often.luatex.tlg b/base/testfiles/tlb-rollback-004-often.luatex.tlg index c1bfe06e8..b463e1863 100644 --- a/base/testfiles/tlb-rollback-004-often.luatex.tlg +++ b/base/testfiles/tlb-rollback-004-often.luatex.tlg @@ -163,20 +163,20 @@ Skipping: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -218,14 +218,14 @@ Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-rollback-004-often.tlg b/base/testfiles/tlb-rollback-004-often.tlg index 651a3cd8b..01893e1c5 100644 --- a/base/testfiles/tlb-rollback-004-often.tlg +++ b/base/testfiles/tlb-rollback-004-often.tlg @@ -152,20 +152,20 @@ Skipping: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -207,14 +207,14 @@ Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-rollback-004-often.xetex.tlg b/base/testfiles/tlb-rollback-004-often.xetex.tlg index 76cff4c52..303d8ca93 100644 --- a/base/testfiles/tlb-rollback-004-often.xetex.tlg +++ b/base/testfiles/tlb-rollback-004-often.xetex.tlg @@ -152,20 +152,20 @@ Skipping: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -207,14 +207,14 @@ Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-rollback-005.luatex.tlg b/base/testfiles/tlb-rollback-005.luatex.tlg index 59878387f..4a621534d 100644 --- a/base/testfiles/tlb-rollback-005.luatex.tlg +++ b/base/testfiles/tlb-rollback-005.luatex.tlg @@ -166,20 +166,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Applying: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -221,14 +221,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-rollback-005.tlg b/base/testfiles/tlb-rollback-005.tlg index 40bf4a840..79eeddd5c 100644 --- a/base/testfiles/tlb-rollback-005.tlg +++ b/base/testfiles/tlb-rollback-005.tlg @@ -156,20 +156,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Applying: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -211,14 +211,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/tlb-rollback-005.xetex.tlg b/base/testfiles/tlb-rollback-005.xetex.tlg index 3db73420e..ef4e59a48 100644 --- a/base/testfiles/tlb-rollback-005.xetex.tlg +++ b/base/testfiles/tlb-rollback-005.xetex.tlg @@ -156,20 +156,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Applying: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -211,14 +211,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... From d410e29d9528894d362443f1c04ae836372b9887 Mon Sep 17 00:00:00 2001 From: Frank Mittelbach Date: Mon, 3 Feb 2025 13:34:25 +0100 Subject: [PATCH 4/8] typo in script, so missed out one more test --- base/testfiles/github-0479-often.luatex.tlg | 30 ++++++++++----------- base/testfiles/github-0479-often.tlg | 30 ++++++++++----------- base/testfiles/github-0479-often.xetex.tlg | 30 ++++++++++----------- base/update-rollback-tests.sh | 4 +-- 4 files changed, 47 insertions(+), 47 deletions(-) diff --git a/base/testfiles/github-0479-often.luatex.tlg b/base/testfiles/github-0479-often.luatex.tlg index f498c2945..d04ad0558 100644 --- a/base/testfiles/github-0479-often.luatex.tlg +++ b/base/testfiles/github-0479-often.luatex.tlg @@ -162,20 +162,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Applying: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -217,14 +217,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/github-0479-often.tlg b/base/testfiles/github-0479-often.tlg index 234469393..d963e848f 100644 --- a/base/testfiles/github-0479-often.tlg +++ b/base/testfiles/github-0479-often.tlg @@ -152,20 +152,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Applying: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -207,14 +207,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/testfiles/github-0479-often.xetex.tlg b/base/testfiles/github-0479-often.xetex.tlg index adb266763..a49a59394 100644 --- a/base/testfiles/github-0479-often.xetex.tlg +++ b/base/testfiles/github-0479-often.xetex.tlg @@ -152,20 +152,20 @@ Applying: [....-..-..] Providing hooks on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Support cmd hooks on input line .... Applying: [....-..-..] Support cmd hooks on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... @@ -207,14 +207,14 @@ Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... -Skipping: [....-..-..] Standardise generic hook names on input line .... -Applying: [....-..-..] Standardise generic hook names on input line .... +Skipping: [....-..-..] Standardize generic hook names on input line .... +Applying: [....-..-..] Standardize generic hook names on input line .... Skipping: [....-..-..] Hooks with args on input line .... Applying: [....-..-..] Hooks with args on input line .... Skipping: [....-..-..] Hooks with args on input line .... diff --git a/base/update-rollback-tests.sh b/base/update-rollback-tests.sh index 815a7feb7..f585b9889 100755 --- a/base/update-rollback-tests.sh +++ b/base/update-rollback-tests.sh @@ -8,14 +8,14 @@ l3build save -epdftex,xetex,luatex \ tlb-latexrelease-rollback-2023-11-01 \ tlb-latexrelease-rollback-2024-06-01 \ tlb-latexrelease-rollback-2024-11-01 \ - tlb-latexrelease-rollback-2025-05-01 \ tlb-latexrelease-rollback-003-often \ tlb-rollback-004-often \ tlb-rollback-005 \ github-0479-often l3build save \ - tlb-latexrelease-rollback-2023-06-01 + tlb-latexrelease-rollback-2023-06-01 \ + tlb-latexrelease-rollback-2025-06-01 l3build save -c config-lthooks \ lthooks-rollback-args From 8f29940bde1d05b6d75c7f622ecb910c7f31988c Mon Sep 17 00:00:00 2001 From: Frank Mittelbach Date: Mon, 3 Feb 2025 13:50:20 +0100 Subject: [PATCH 5/8] Added changes.txt entry; dropped various unnecessary \cs{foo} replacing them by \foo across the file --- base/changes.txt | 47 +++++++++++++++++++++++++++-------------------- 1 file changed, 27 insertions(+), 20 deletions(-) diff --git a/base/changes.txt b/base/changes.txt index 427d38331..4a8921053 100644 --- a/base/changes.txt +++ b/base/changes.txt @@ -6,10 +6,17 @@ to completeness or accuracy and it contains some references to files that are not part of the distribution. ================================================================================ +2025-02-03 Frank Mittelbach + + * lthooks.dtx: + + Document more prominently that using a hook with \UseHook or similar + commands require that the hook to be declared first (gh/1519) + 2025-01-31 Frank Mittelbach * latexrelease.dtx (subsection{Ignoring \texttt{\string_new} errors when rolling back}): - Silence \cs{NewSocket} and \cs{NewSocketPlug} in rollback + Silence \NewSocket and \NewSocketPlug in rollback 2025-01-29 Frank Mittelbach @@ -230,7 +237,7 @@ All changes above are only part of the development branch for the next release. 2025-01-26 Frank Mittelbach * ltlists.dtx: - Only migrate \cs{@doendpe} out of simple and semi-simple groups (gh/1641) + Only migrate \@doendpe out of simple and semi-simple groups (gh/1641) ######################### # 2024-11-01 PL1 Release @@ -406,7 +413,7 @@ All changes above are only part of the development branch for the next release. 2024-07-13 Frank Mittelbach * lttagging.dtx (subsection{Tagging support for table/tabular packages}): - Sockets for \cs{cline} leaders added (tagging/134) + Sockets for \cline leaders added (tagging/134) 2024-07-10 Frank Mittelbach @@ -1061,7 +1068,7 @@ All changes above are only part of the development branch for the next release. 2022-11-14 Frank Mittelbach * latexrelease.dtx (subsection{Ignoring \texttt{\string_new} errors when rolling back}): - Silence \cs{NewMarkClass} in rollback (gh/955) + Silence \NewMarkClass in rollback (gh/955) 2022-11-13 Frank Mittelbach @@ -2255,7 +2262,7 @@ All changes above are only part of the development branch for the next release. 2020-12-10 Frank Mittelbach * ltbibl.dtx (section{Bibliography Generation}): - Delay any \cs{nocite} in the preamble instead of raising + Delay any \nocite in the preamble instead of raising an error (gh/424) 2020-12-06 Johannes Braams @@ -2819,7 +2826,7 @@ All changes above are only part of the development branch for the next release. 2020-03-07 Frank Mittelbach - * ltspace.dtx: Moved \cs{thinspace}, \cs{negthinspace} and \cs{,} to + * ltspace.dtx: Moved \thinspace, \negthinspace and \, to ltmath.dtx (gh/303) * ltmath.dtx (subsubsection{The UNSORTED Rest}): @@ -4856,7 +4863,7 @@ All changes above are only part of the development branch for the next release. 2003-08-27 Frank Mittelbach * ltpictur.dtx (section{Picture Mode}): - check for \cs{@linechar} being empty (pr/3570) + check for \@linechar being empty (pr/3570) (subsection{Curves}): added missing displacement (pr/3566) 2003-05-18 Frank Mittelbach @@ -4942,11 +4949,11 @@ All changes above are only part of the development branch for the next release. * ltvers.dtx: error message still talked about 1 year old sources being too old (though in fact it is 30 months) - * ltoutenc.dtx: Corrected \cs{c} for T1 (pr/3442) + * ltoutenc.dtx: Corrected \c for T1 (pr/3442) Added \cs{textbardbl} (pr/3400) - Definition of \textexclamdown changed (pr/3368) + Definition of \textexclamdown changed (pr/3368) Definition of \textquestiondown changed (pr/3368) - Changed def for \textregistered to avoid small caps (pr/3420) + Changed def for \textregistered to avoid small caps (pr/3420) 2002-06-16 Frank Mittelbach @@ -5253,8 +5260,8 @@ All changes above are only part of the development branch for the next release. 1999-12-08 Frank Mittelbach * ltoutenc.dtx (subsection{The fontenc package}): - Changed \cs{CYRRHOOK} and \cs{cyrrhook} to - \cs{CYRRHK} and \cs{cyrrhk} as name changed in the cyrillic + Changed \CYRRHOOK and \cyrrhook to + \CYRRHK and \cyrrhk as name changed in the cyrillic bundle for naming consistency with other ``hook'' glyphs. 1999-12-01 Frank Mittelbach @@ -5614,7 +5621,7 @@ All changes above are only part of the development branch for the next release. 1999-01-05 Rainer Schoepf * fontdef.dtx: Need special protection for character - \texttt{\char62} in \cs{changes} entry, as this is the makeindex + \char62 in \changes entry, as this is the makeindex actualchar. 1998-12-28 Rainer Schoepf @@ -5672,7 +5679,7 @@ All changes above are only part of the development branch for the next release. 1998-08-17 Rainer Schoepf - * (Various source files): Replaced old form `commandname by + * (Various source files): Replaced old form \cmd{\commandname} by \cs{commandname} in changes entries. * (Various source files): Replaced \cmd{\commandname} by @@ -8012,7 +8019,7 @@ All changes above are only part of the development branch for the next release. 1995-10-23 Rainer Schoepf * classes.dtx (subsubsection{Abstract}): Added setting of - \cs{beginparpenalty} to discourage page break before abstract + \beginparpenalty to discourage page break before abstract heading. 1995-10-22 Rainer Schoepf @@ -9018,8 +9025,8 @@ All changes above are only part of the development branch for the next release. * classes.dtx: replaced all \hbox to with \hb@xt@; replaced all constructs such as \arabic{enumi} with \@arabic\c@enumi (subsection{Footnotes}): Use \@width instead of width - (subsection{The title}): Use \cs{\@makefnmark} in definition of - \cs{@makefntext} + (subsection{The title}): Use \@makefnmark in definition of + \@makefntext Cleaned up the \changes entries 1995-05-17 David Carlisle @@ -10464,8 +10471,8 @@ All changes above are only part of the development branch for the next release. 1994-09-04 Alan Jeffrey - * inputenc.dtx: Added \cs{DeclareInputComposite} and the - \cs{ProvidesCommand}s to the encoding files. + * inputenc.dtx: Added \DeclareInputComposite and the + \ProvidesCommand's to the encoding files. Removed the definition of the accent slots in Latin-1. 1994-08-31 Alan Jeffrey @@ -13091,7 +13098,7 @@ All changes above are only part of the development branch for the next release. version in ltplain.dtx is no longer \outer. Comment out the experimental version of \@bsphack. - Remove test for \cs{inputlineno} undefined as it is + Remove test for \inputlineno undefined as it is defined in ltplain.dtx * ltplain.dtx: remove \outer from \newskip \newdimen \newwrite From b23ec1974059f44e65de4ba54353d9d59be30113 Mon Sep 17 00:00:00 2001 From: Frank Mittelbach Date: Mon, 3 Feb 2025 15:06:19 +0100 Subject: [PATCH 6/8] Update base/lthooks.dtx Co-authored-by: Yukai Chou --- base/lthooks.dtx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/lthooks.dtx b/base/lthooks.dtx index d04d91951..00004cd91 100644 --- a/base/lthooks.dtx +++ b/base/lthooks.dtx @@ -352,7 +352,7 @@ % the hook declaration may be in some package that is loaded later or % perhaps not loaded at all. % -% A side effect of this design is that misspelling do not raise an +% A side effect of this design is that misspellings do not raise an % error, but are simply regarded as declarations for hooks with a % different name % From a23fc1852acb5c6d9de66c3c746a6eb59c110632 Mon Sep 17 00:00:00 2001 From: Frank Mittelbach Date: Mon, 3 Feb 2025 15:07:01 +0100 Subject: [PATCH 7/8] Update base/lthooks.dtx Co-authored-by: Yukai Chou --- base/lthooks.dtx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/lthooks.dtx b/base/lthooks.dtx index 00004cd91..fabd87137 100644 --- a/base/lthooks.dtx +++ b/base/lthooks.dtx @@ -354,7 +354,7 @@ % % A side effect of this design is that misspellings do not raise an % error, but are simply regarded as declarations for hooks with a -% different name +% different name. % % \begin{function}{\AddToHook} % \begin{syntax} From 842778a509461f375132b00d4a4dacfb5a5e6e50 Mon Sep 17 00:00:00 2001 From: Frank Mittelbach Date: Wed, 5 Feb 2025 22:57:57 +0100 Subject: [PATCH 8/8] edits after review by CAR --- base/changes.txt | 2 +- base/lthooks.dtx | 34 +++++++++++++++++----------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/base/changes.txt b/base/changes.txt index 4a8921053..04ad4c708 100644 --- a/base/changes.txt +++ b/base/changes.txt @@ -11,7 +11,7 @@ not part of the distribution. * lthooks.dtx: Document more prominently that using a hook with \UseHook or similar - commands require that the hook to be declared first (gh/1519) + commands requires that the hook to be declared first (gh/1519) 2025-01-31 Frank Mittelbach diff --git a/base/lthooks.dtx b/base/lthooks.dtx index fabd87137..df43dbd84 100644 --- a/base/lthooks.dtx +++ b/base/lthooks.dtx @@ -32,7 +32,7 @@ %<*driver> % \fi \ProvidesFile{lthooks.dtx} - [2025/02/03 v1.1l LaTeX Kernel (hooks)] + [2025/02/05 v1.1l LaTeX Kernel (hooks)] % \iffalse % \documentclass{l3doc} @@ -249,7 +249,7 @@ % % \subsubsection{Using hooks in code} % -% Using a hook, that is executing the code that has been associated +% Using a hook that is executing the code that has been associated % with it is only allowed if the hook has been previously declared % with \cs{NewHook}. For performance reason there are no runtime % checks for this and it is the responsibility of the programmer of a @@ -347,13 +347,13 @@ % \subsubsection{Updating code for hooks} % % In contrast to the commands from the previous section, declarations -% such as \cs{AddToHook} or \cs{DeclareHookRule} are allowed to be -% used even if the hook is not yet declared. The rationale is, that -% the hook declaration may be in some package that is loaded later or +% such as \cs{AddToHook} or \cs{DeclareHookRule} can be +% used even when the hook is not yet declared. The rationale is that +% the hook declaration may be in some package that is loaded later, or % perhaps not loaded at all. % % A side effect of this design is that misspellings do not raise an -% error, but are simply regarded as declarations for hooks with a +% error but are simply regarded as declarations for hooks with a % different name. % % \begin{function}{\AddToHook} @@ -756,28 +756,28 @@ % in others. % % Before the hook management system was introduced -% packages had to take elaborate precaution to determine if some other -% package got loaded as well (before or after) and find some ways to +% packages had to take elaborate precautions to determine whether some other +% package had also been loaded (before or after) and then to find some ways to % alter its behavior accordingly. In addition is was often the user's % responsibility to load packages in the right order so that alterations -% made by packages were done in the right order and some cases even +% made by packages were done in thsat same order; and in some cases even % altering the loading order wouldn't resolve the conflicts. % % With the new hook management system it is now possible to define % rules (i.e., relationships) between code chunks added by different -% packages and explicitly describe in which order they should be +% packages and to specify explicitly the order in which they should be % processed. % % The rules can be declared for hooks before the hook has been % declared with \cs{NewHook} and they are allowed to refer to code % labels that do not yet exist, e.g., because a package defining the % code chunk with that label has not yet been loaded. -% When the hook code is finally sorted all rules that apply are acted -% upon, the others are ignored. +% When the hook code is finally sorted for fast execution, all rules that apply are acted on +% and the others are ignored. % -% This offers the necessary flexibility to handle complicated -% relationships between code from different packages and set this up -% beforehand, whether or not the packages are actually loaded in a +% This offers the flexibility needed to handle complicated +% relationships between code from different packages and to set this up +% beforehand in a way that is independent of whether or not the packages are actually loaded in a % specific document. The downside of this is that misspellings of % hook names or code labels will not raise any error, instead the rule % will simply never apply! @@ -1062,7 +1062,7 @@ % \end{syntax} % Turn the debugging of hook code on or off. This displays most changes % made to the hook data structures. The output is rather coarse and -% not really intended for normal use but helpful in case hooks do +% not really intended for normal use, but it can be helpful in case hooks do % not work as expected. See also \ref{sec:display-hooks} for % commands to inspect individual hooks. % \end{function} @@ -4585,7 +4585,7 @@ % \begin{macro}{\@@_code_gset_auxi:nnnn,\@@_code_gset_auxi:eeen} % This macro is used to append code to the \verb|toplevel| and % \verb|next| token lists, treating them correctly depending on their -% number of arguments, and depending if the code being added should +% number of arguments, and depending on whether the code being added should % have parameter tokens understood as parameters, or doubled to be % stored as parameter tokens. % \changes{v1.1a}{2023/04/06}