From 746696b80d142c789b295334f6a6e71718cfd0ce Mon Sep 17 00:00:00 2001 From: Frank Mittelbach Date: Thu, 10 Mar 2022 12:50:31 +0100 Subject: [PATCH] fix for #790 --- base/changes.txt | 6 +++ base/doc/ltnews35.tex | 15 ++++++++ base/ltbibl.dtx | 37 ++++++++++++++++++- base/testfiles/github-0479-often.luatex.tlg | 3 ++ base/testfiles/github-0479-often.tlg | 3 ++ base/testfiles/github-0479-often.xetex.tlg | 3 ++ base/testfiles/github-0790.lvt | 20 ++++++++++ base/testfiles/github-0790.tlg | 18 +++++++++ ...latexrelease-rollback-003-often.luatex.tlg | 6 +++ .../tlb-latexrelease-rollback-003-often.tlg | 6 +++ ...-latexrelease-rollback-003-often.xetex.tlg | 6 +++ ...atexrelease-rollback-2020-10-01.luatex.tlg | 3 ++ .../tlb-latexrelease-rollback-2020-10-01.tlg | 3 ++ ...latexrelease-rollback-2020-10-01.xetex.tlg | 3 ++ ...atexrelease-rollback-2021-06-01.luatex.tlg | 3 ++ .../tlb-latexrelease-rollback-2021-06-01.tlg | 3 ++ ...latexrelease-rollback-2021-06-01.xetex.tlg | 3 ++ ...atexrelease-rollback-2021-11-15.luatex.tlg | 3 ++ .../tlb-latexrelease-rollback-2021-11-15.tlg | 3 ++ ...latexrelease-rollback-2021-11-15.xetex.tlg | 3 ++ .../tlb-rollback-004-often.luatex.tlg | 3 ++ base/testfiles/tlb-rollback-004-often.tlg | 3 ++ .../tlb-rollback-004-often.xetex.tlg | 3 ++ base/testfiles/tlb-rollback-005.luatex.tlg | 3 ++ base/testfiles/tlb-rollback-005.tlg | 3 ++ base/testfiles/tlb-rollback-005.xetex.tlg | 3 ++ 26 files changed, 166 insertions(+), 2 deletions(-) create mode 100644 base/testfiles/github-0790.lvt create mode 100644 base/testfiles/github-0790.tlg diff --git a/base/changes.txt b/base/changes.txt index 87bd4dd4f..6a63c853a 100644 --- a/base/changes.txt +++ b/base/changes.txt @@ -6,6 +6,12 @@ completeness or accuracy and it contains some references to files that are not part of the distribution. ================================================================================ +2022-03-10 Frank Mittelbach + + * ltbibl.dtx (section{Bibliography Generation}): + Ensure that an empty argument given to \cite generates + a warning (gh/790) + 2022-02-28 Phelype Oleinik * ltvers.dtx (subsection{Declaring an all-new module}): diff --git a/base/doc/ltnews35.tex b/base/doc/ltnews35.tex index 872103e04..a69b0b53d 100644 --- a/base/doc/ltnews35.tex +++ b/base/doc/ltnews35.tex @@ -552,6 +552,21 @@ \subsection{Fix \cs{ShowCommand} when used with \pkg{ltcmd}} +\subsection{Make \cs{cite}\texttt{\textbraceleft\textbraceright} produce a warning} + +When the \cs{cite} command can't resolve a citation label it issue a +warning \enquote{Citation `\meta{label}' on page \meta{page} + undefined}. However, due to some implementation details a completely +empty argument was always silently accepted. Given that there are probably +people who write \verb=\cite{}= with the intention to fill in the +correct label later it is rather unfortunate if that is not generating +a warning that something in the document is still amiss. +This has finally been corrected and a warning is now generated also in this case. +% +\githubissue{790} + + + \section{Changes to packages in the \pkg{amsmath} category} diff --git a/base/ltbibl.dtx b/base/ltbibl.dtx index 9824ca539..da2974bd1 100644 --- a/base/ltbibl.dtx +++ b/base/ltbibl.dtx @@ -32,7 +32,7 @@ %<*driver> % \fi \ProvidesFile{ltbibl.dtx} - [2020/12/10 v1.1s LaTeX Kernel (Bibliography)] + [2022/03/10 v1.1t LaTeX Kernel (Bibliography)] % \iffalse \documentclass{ltxdoc} \GetFileInfo{ltbibl.dtx} @@ -199,8 +199,41 @@ % \begin{macro}{\cite} % \changes{v1.1j}{1995/10/16}{(DPC) Make robust} % \begin{macrocode} +% +%<*2ekernel|latexrelease> +%\IncludeInRelease{2022/06/01}% +% {\cite}{check for blank}% \DeclareRobustCommand\cite{% - \@ifnextchar [{\@tempswatrue\@citex}{\@tempswafalse\@citex[]}} + \@ifnextchar [{\@tempswatrue\@citex@checkblank}{\@tempswafalse\@citex@checkblank[]}} +% \end{macrocode} +% Due to the \css{@for} as used in \cs{@citex} behaves and empty +% argument to \cs{cite} did not produce any Warning for a missing +% citation. So we inject a command before calling \cs{@citex} that +% does the checking for us. It is not done in \cs{@citex} directly, +% because that command is altered by a number of packages/classes +% and this way it is more likely that the check survives. +% \changes{v1.1t}{2022/03/10}{Ensure that an empty argument generates +% a warning (gh/790)} +% \begin{macrocode} +\def\@citex@checkblank[#1]#2{% + \IfBlankTF {#2}% + {\@citex[#1]{\space}}% + {\@citex[#1]{#2}}% +} +% +% \end{macrocode} +% +% \begin{macrocode} +%\EndIncludeInRelease +%\IncludeInRelease{0000/00/00}% +% {\cite}{check for blank}% +% +%\DeclareRobustCommand\cite{% +% \@ifnextchar [{\@tempswatrue\@citex}{\@tempswafalse\@citex[]}} +%\let\@citex@checkblank\@undefined +% +%\EndIncludeInRelease +%<*2ekernel> % \end{macrocode} % \end{macro} % diff --git a/base/testfiles/github-0479-often.luatex.tlg b/base/testfiles/github-0479-often.luatex.tlg index 7b53239fb..bcc68e99f 100644 --- a/base/testfiles/github-0479-often.luatex.tlg +++ b/base/testfiles/github-0479-often.luatex.tlg @@ -539,6 +539,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/github-0479-often.tlg b/base/testfiles/github-0479-often.tlg index 2d669607c..b2710fc35 100644 --- a/base/testfiles/github-0479-often.tlg +++ b/base/testfiles/github-0479-often.tlg @@ -528,6 +528,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/github-0479-often.xetex.tlg b/base/testfiles/github-0479-often.xetex.tlg index db6f94201..ba256b7ac 100644 --- a/base/testfiles/github-0479-often.xetex.tlg +++ b/base/testfiles/github-0479-often.xetex.tlg @@ -529,6 +529,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/github-0790.lvt b/base/testfiles/github-0790.lvt new file mode 100644 index 000000000..3ec60f4b0 --- /dev/null +++ b/base/testfiles/github-0790.lvt @@ -0,0 +1,20 @@ +\documentclass{article} + +\input{test2e} + +\START + +\SHOWFILE{\jobname.aux} + +\OMIT +\begin{document} +\TIMO + + \cite{Goodfellow2014a} + \cite{} % this was not detected + \cite{ } % this is + + \bibliography{main} + \bibliographystyle{plain} + +\end{document} diff --git a/base/testfiles/github-0790.tlg b/base/testfiles/github-0790.tlg new file mode 100644 index 000000000..74661cca1 --- /dev/null +++ b/base/testfiles/github-0790.tlg @@ -0,0 +1,18 @@ +This is a generated file for the LaTeX2e validation system. +Don't change this file in any respect. +-------- github-0790.aux (start) --------- +(github-0790.aux) \relax^^M +\citation{Goodfellow2014a}^^M +\citation{}^^M +\citation{}^^M +\bibdata{main}^^M +\bibstyle{plain}^^M +\gdef \@abspage@last{1}^^M +-------- github-0790.aux (end) ----------- +LaTeX Warning: Citation `Goodfellow2014a' on page 1 undefined on input line .... +LaTeX Warning: Citation `' on page 1 undefined on input line .... +LaTeX Warning: Citation `' on page 1 undefined on input line .... +No file github-0790.bbl. +[1 +] (github-0790.aux) +LaTeX Warning: There were undefined references. diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg index c8e67d426..4bf505090 100644 --- a/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg @@ -457,6 +457,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Skipping: [....-..-..] Make commands robust on input line .... @@ -1097,6 +1100,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.tlg index 8575fe743..d8c1bf30b 100644 --- a/base/testfiles/tlb-latexrelease-rollback-003-often.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-003-often.tlg @@ -451,6 +451,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Skipping: [....-..-..] Make commands robust on input line .... @@ -1081,6 +1084,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg index f5b8d63ad..2f588f22c 100644 --- a/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg @@ -451,6 +451,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Skipping: [....-..-..] Make commands robust on input line .... @@ -1090,6 +1093,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg index da130e45f..420898ece 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg @@ -539,6 +539,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg index bbca920f4..35c16ebab 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg @@ -528,6 +528,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg index 0afe5f92b..56d590a90 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg @@ -529,6 +529,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg index 0977cc42b..79b45c734 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg @@ -540,6 +540,9 @@ Applying: [....-..-..] footnotetext tagging on input line .... Already applied: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] Add footref on input line .... Already applied: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Already applied: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg index 9ecc01af2..8af4a5bef 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg @@ -528,6 +528,9 @@ Applying: [....-..-..] footnotetext tagging on input line .... Already applied: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] Add footref on input line .... Already applied: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Already applied: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg index 85dec56dc..df0800ed1 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg @@ -529,6 +529,9 @@ Applying: [....-..-..] footnotetext tagging on input line .... Already applied: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] Add footref on input line .... Already applied: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Already applied: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg index 11f566161..cf27b6122 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg @@ -540,6 +540,9 @@ Already applied: [....-..-..] footnotetext tagging on input line .... Already applied: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] Add footref on input line .... Already applied: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Already applied: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg index 81dfef38f..38ee9ad7f 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg @@ -528,6 +528,9 @@ Already applied: [....-..-..] footnotetext tagging on input line .... Already applied: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] Add footref on input line .... Already applied: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Already applied: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg index 45d1d7759..634d06475 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg @@ -529,6 +529,9 @@ Already applied: [....-..-..] footnotetext tagging on input line .... Already applied: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] Add footref on input line .... Already applied: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Already applied: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-rollback-004-often.luatex.tlg b/base/testfiles/tlb-rollback-004-often.luatex.tlg index a8440c84b..488580ade 100644 --- a/base/testfiles/tlb-rollback-004-often.luatex.tlg +++ b/base/testfiles/tlb-rollback-004-often.luatex.tlg @@ -535,6 +535,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-rollback-004-often.tlg b/base/testfiles/tlb-rollback-004-often.tlg index e0368ed3e..b7e7d238c 100644 --- a/base/testfiles/tlb-rollback-004-often.tlg +++ b/base/testfiles/tlb-rollback-004-often.tlg @@ -523,6 +523,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-rollback-004-often.xetex.tlg b/base/testfiles/tlb-rollback-004-often.xetex.tlg index f83594f19..f2a05bb44 100644 --- a/base/testfiles/tlb-rollback-004-often.xetex.tlg +++ b/base/testfiles/tlb-rollback-004-often.xetex.tlg @@ -524,6 +524,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-rollback-005.luatex.tlg b/base/testfiles/tlb-rollback-005.luatex.tlg index 33a6fb01a..5edc0ebf2 100644 --- a/base/testfiles/tlb-rollback-005.luatex.tlg +++ b/base/testfiles/tlb-rollback-005.luatex.tlg @@ -543,6 +543,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-rollback-005.tlg b/base/testfiles/tlb-rollback-005.tlg index bd5be3d1a..ab48eb9fb 100644 --- a/base/testfiles/tlb-rollback-005.tlg +++ b/base/testfiles/tlb-rollback-005.tlg @@ -532,6 +532,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line .... diff --git a/base/testfiles/tlb-rollback-005.xetex.tlg b/base/testfiles/tlb-rollback-005.xetex.tlg index cc98b3eb7..20b2d9780 100644 --- a/base/testfiles/tlb-rollback-005.xetex.tlg +++ b/base/testfiles/tlb-rollback-005.xetex.tlg @@ -533,6 +533,9 @@ Skipping: [....-..-..] footnotetext tagging on input line .... Applying: [....-..-..] footnotetext tagging on input line .... Skipping: [....-..-..] Add footref on input line .... Applying: [....-..-..] Add footref on input line .... +Skipping: [....-..-..] check for blank on input line .... +Applying: [....-..-..] check for blank on input line .... +LaTeX Info: Redefining \cite on input line .... Skipping: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Allow nocite in preamble on input line .... Applying: [....-..-..] Make commands robust on input line ....