[latex3-commits] [git/LaTeX3-latex3-latex2e] OR-lab: add a bool to turn off debugging completely (ac102462)

Frank Mittelbach frank.mittelbach at latex-project.org
Wed Mar 9 11:11:57 CET 2022


Repository : https://github.com/latex3/latex2e
On branch  : OR-lab
Link       : https://github.com/latex3/latex2e/commit/ac1024627581ee1e24173cb842c6e93afdf692f8

>---------------------------------------------------------------

commit ac1024627581ee1e24173cb842c6e93afdf692f8
Author: Frank Mittelbach <frank.mittelbach at latex-project.org>
Date:   Wed Mar 9 11:11:57 2022 +0100

    add a bool to turn off debugging completely


>---------------------------------------------------------------

ac1024627581ee1e24173cb842c6e93afdf692f8
 required/latex-lab/latex-lab-footnotes.dtx         | 57 ++++++++++++++--------
 .../footmisc-local-aastex631.tlg                   |  4 ++
 .../footmisc-local-uafthesis.tlg                   |  4 ++
 .../testfiles-OR-local/footmisc-local-uwthesis.tlg |  4 ++
 required/latex-lab/testfiles-OR/footmisc-002.tlg   |  4 ++
 required/latex-lab/testfiles-OR/footmisc-003.tlg   |  4 ++
 required/latex-lab/testfiles-OR/footmisc-004.tlg   |  4 ++
 required/latex-lab/testfiles-OR/footmisc-005.tlg   |  4 ++
 required/latex-lab/testfiles-OR/footmisc-006.tlg   |  4 ++
 .../testfiles-OR/footmisc-007-rollback.tlg         |  4 ++
 .../testfiles-OR/footmisc-009-multiple.tlg         |  4 ++
 .../testfiles-OR/footmisc-010-setspace.tlg         |  4 ++
 .../latex-lab/testfiles-OR/footmisc-011-para.tlg   |  4 ++
 .../latex-lab/testfiles-OR/footmisc-012-side.tlg   |  4 ++
 .../testfiles-OR/footmisc-013-scrartcl.tlg         |  4 ++
 .../footmisc-floats-abovefloats-flushbottom.tlg    |  4 ++
 .../testfiles-OR/footmisc-floats-abovefloats.tlg   |  4 ++
 .../footmisc-floats-belowfloats-flushbottom.tlg    |  4 ++
 .../testfiles-OR/footmisc-floats-latex.tlg         |  4 ++
 required/latex-lab/testfiles-OR/tagging-001.tlg    |  4 ++
 20 files changed, 114 insertions(+), 19 deletions(-)

diff --git a/required/latex-lab/latex-lab-footnotes.dtx b/required/latex-lab/latex-lab-footnotes.dtx
index b9e14c75..a8f8b00f 100644
--- a/required/latex-lab/latex-lab-footnotes.dtx
+++ b/required/latex-lab/latex-lab-footnotes.dtx
@@ -461,6 +461,14 @@
 
 %-------------------------------------
 
+% the debugging code is just temp
+\bool_new:N \g_fnote_debug_bool
+\bool_gset_true:N  \g_fnote_debug_bool   % for now we have debugging turned on by default
+
+%-------------------------------------
+
+
+
 \NewMirroredHookPair{fnmark/before}{fnmark/after}
 \NewHook{fnmark}
 \NewHook{fnmark/begin}
@@ -468,12 +476,15 @@
 
 
 \cs_new:Npn \__fnote_debug_footnotemark: {
-  \LogHook{fnmark/before}
-  \LogHook{fnmark}
-  \LogHook{fnmark/begin}
-  \LogHook{fnmark/end}
-  \LogHook{fnmark/after}
-  \cs_gset_eq:NN \__fnote_debug_footnotemark: \prg_do_nothing:
+  \bool_if:NT \g_fnote_debug_bool
+       {
+         \LogHook{fnmark/before}
+         \LogHook{fnmark}
+         \LogHook{fnmark/begin}
+         \LogHook{fnmark/end}
+         \LogHook{fnmark/after}
+         \cs_gset_eq:NN \__fnote_debug_footnotemark: \prg_do_nothing:
+       }
 }
 
 
@@ -557,24 +568,32 @@
 \NewMirroredHookPair{fntext/before}{fntext/after}
 \NewHook{fntext}
 \NewHook{fntext/para}
-\NewHook{fntext/para2}         %bad name perhaps?
+\NewHook{fntext/para2}
 \NewHook{fntext/begin}
 \NewHook{fntext/end}
 
 
 \cs_new:Npn \__fnote_debug_footnotetext: {
-  \cs_log:N\@footnotetext at process
-  \cs_log:N\@footnotetext at processii
-  \cs_log:N\@footnotetext at processiii
-  \cs_log:N\@footnotetext at processiv
-  \LogHook{fntext/before}
-  \LogHook{fntext}
-  \LogHook{fntext/para}
-  \LogHook{fntext/para2}
-  \LogHook{fntext/begin}
-  \LogHook{fntext/end}
-  \LogHook{fntext/after}
-  \cs_gset_eq:NN \__fnote_debug_footnotetext: \prg_do_nothing:
+  \bool_if:NT \g_fnote_debug_bool
+       {
+         \cs_log:N\@footnotetext at process
+         \cs_log:N\@footnotetext at processii
+         \cs_log:N\@footnotetext at processiii
+         \cs_log:N\@footnotetext at processiv
+         \cs_log:N\@makefntext at process
+         \cs_log:N\@makefntext at processii
+         \LogHook{fntext/before}
+         \LogHook{fntext}
+         \LogHook{fntext/para}
+         \LogHook{fntext/para2}
+         \LogHook{fntext/begin}
+         \LogHook{fntext/end}
+         \LogHook{fntext/after}
+%    \end{macrocode}
+%    Show the info only once (if at all).
+%    \begin{macrocode}
+         \cs_gset_eq:NN \__fnote_debug_footnotetext: \prg_do_nothing:
+       }
   }
 
 \cs_new:Npn \fnote_footnotetext:n #1 {
diff --git a/required/latex-lab/testfiles-OR-local/footmisc-local-aastex631.tlg b/required/latex-lab/testfiles-OR-local/footmisc-local-aastex631.tlg
index 668366a8..2800552b 100644
--- a/required/latex-lab/testfiles-OR-local/footmisc-local-aastex631.tlg
+++ b/required/latex-lab/testfiles-OR-local/footmisc-local-aastex631.tlg
@@ -12,6 +12,10 @@ LaTeX Font Info:    Trying to load font information for U+msb on input line ....
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR-local/footmisc-local-uafthesis.tlg b/required/latex-lab/testfiles-OR-local/footmisc-local-uafthesis.tlg
index d5efdeb0..e0feb33e 100644
--- a/required/latex-lab/testfiles-OR-local/footmisc-local-uafthesis.tlg
+++ b/required/latex-lab/testfiles-OR-local/footmisc-local-uafthesis.tlg
@@ -34,6 +34,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR-local/footmisc-local-uwthesis.tlg b/required/latex-lab/testfiles-OR-local/footmisc-local-uwthesis.tlg
index 6ec24984..6ae504af 100644
--- a/required/latex-lab/testfiles-OR-local/footmisc-local-uwthesis.tlg
+++ b/required/latex-lab/testfiles-OR-local/footmisc-local-uwthesis.tlg
@@ -34,6 +34,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-002.tlg b/required/latex-lab/testfiles-OR/footmisc-002.tlg
index 49b66c94..e93cc923 100644
--- a/required/latex-lab/testfiles-OR/footmisc-002.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-002.tlg
@@ -27,6 +27,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-003.tlg b/required/latex-lab/testfiles-OR/footmisc-003.tlg
index 133cc3db..508f12c3 100644
--- a/required/latex-lab/testfiles-OR/footmisc-003.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-003.tlg
@@ -27,6 +27,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-004.tlg b/required/latex-lab/testfiles-OR/footmisc-004.tlg
index d9b85b59..37a3c07f 100644
--- a/required/latex-lab/testfiles-OR/footmisc-004.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-004.tlg
@@ -27,6 +27,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-005.tlg b/required/latex-lab/testfiles-OR/footmisc-005.tlg
index 0097deaa..3689056f 100644
--- a/required/latex-lab/testfiles-OR/footmisc-005.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-005.tlg
@@ -30,6 +30,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processiii=macro:->.
 > \@footnotetext at processiv=macro:->\strut \penalty -10\relax \hskip \footglue
 .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-006.tlg b/required/latex-lab/testfiles-OR/footmisc-006.tlg
index 196be786..6c2309d4 100644
--- a/required/latex-lab/testfiles-OR/footmisc-006.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-006.tlg
@@ -30,6 +30,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processiii=macro:->.
 > \@footnotetext at processiv=macro:->\strut \penalty -10\relax \hskip \footglue
 .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-007-rollback.tlg b/required/latex-lab/testfiles-OR/footmisc-007-rollback.tlg
index 375db2c6..74192244 100644
--- a/required/latex-lab/testfiles-OR/footmisc-007-rollback.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-007-rollback.tlg
@@ -47,6 +47,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-009-multiple.tlg b/required/latex-lab/testfiles-OR/footmisc-009-multiple.tlg
index 610c9085..aa2d68fe 100644
--- a/required/latex-lab/testfiles-OR/footmisc-009-multiple.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-009-multiple.tlg
@@ -45,6 +45,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-010-setspace.tlg b/required/latex-lab/testfiles-OR/footmisc-010-setspace.tlg
index 11d7fca3..20d7789b 100644
--- a/required/latex-lab/testfiles-OR/footmisc-010-setspace.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-010-setspace.tlg
@@ -40,6 +40,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-011-para.tlg b/required/latex-lab/testfiles-OR/footmisc-011-para.tlg
index eac4f45b..442d06d4 100644
--- a/required/latex-lab/testfiles-OR/footmisc-011-para.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-011-para.tlg
@@ -30,6 +30,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processiii=macro:->.
 > \@footnotetext at processiv=macro:->\strut \penalty -10\relax \hskip \footglue
 .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-012-side.tlg b/required/latex-lab/testfiles-OR/footmisc-012-side.tlg
index 683b1142..cdceee17 100644
--- a/required/latex-lab/testfiles-OR/footmisc-012-side.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-012-side.tlg
@@ -27,6 +27,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->.
 > \@footnotetext at processiv=macro:->.
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-013-scrartcl.tlg b/required/latex-lab/testfiles-OR/footmisc-013-scrartcl.tlg
index 32b012e9..846892f4 100644
--- a/required/latex-lab/testfiles-OR/footmisc-013-scrartcl.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-013-scrartcl.tlg
@@ -34,6 +34,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-floats-abovefloats-flushbottom.tlg b/required/latex-lab/testfiles-OR/footmisc-floats-abovefloats-flushbottom.tlg
index 9be92231..5cbc22fa 100644
--- a/required/latex-lab/testfiles-OR/footmisc-floats-abovefloats-flushbottom.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-floats-abovefloats-flushbottom.tlg
@@ -27,6 +27,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-floats-abovefloats.tlg b/required/latex-lab/testfiles-OR/footmisc-floats-abovefloats.tlg
index 870597f1..dcabfd63 100644
--- a/required/latex-lab/testfiles-OR/footmisc-floats-abovefloats.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-floats-abovefloats.tlg
@@ -27,6 +27,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-floats-belowfloats-flushbottom.tlg b/required/latex-lab/testfiles-OR/footmisc-floats-belowfloats-flushbottom.tlg
index f9942d70..4e4ee38f 100644
--- a/required/latex-lab/testfiles-OR/footmisc-floats-belowfloats-flushbottom.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-floats-belowfloats-flushbottom.tlg
@@ -27,6 +27,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/footmisc-floats-latex.tlg b/required/latex-lab/testfiles-OR/footmisc-floats-latex.tlg
index 2dbcb53f..6e56d9b3 100644
--- a/required/latex-lab/testfiles-OR/footmisc-floats-latex.tlg
+++ b/required/latex-lab/testfiles-OR/footmisc-floats-latex.tlg
@@ -29,6 +29,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':
diff --git a/required/latex-lab/testfiles-OR/tagging-001.tlg b/required/latex-lab/testfiles-OR/tagging-001.tlg
index 182798bc..ffa782ae 100644
--- a/required/latex-lab/testfiles-OR/tagging-001.tlg
+++ b/required/latex-lab/testfiles-OR/tagging-001.tlg
@@ -27,6 +27,10 @@ LaTeX Font Info:    External font `cmex10' loaded for size
 > \@footnotetext at processii=macro:->\@makefntext .
 > \@footnotetext at processiii=macro:->\rule \z@ \footnotesep .
 > \@footnotetext at processiv=macro:->\@finalstrut \strutbox .
+> \@makefntext at process=\long macro:#1->\noindent \cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_end_push: }\tag at FELbl {#1}.
+> \@makefntext at processii=\long macro:#1->\tag at FENote {#1}\cs_if_exist:NT
+\tag_struct_begin:n {\tag_mc_begin_pop:n {}}.
 -> The hook 'fntext/before':
 > The hook is empty.
 -> The hook 'fntext':





More information about the latex3-commits mailing list.