-
-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8915fa7
commit d6aa629
Showing
34 changed files
with
2,700 additions
and
2,402 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,13 @@ not part of the distribution. | |
* usrguide.tex: | ||
Add syntax of \Make...case | ||
|
||
2024-11-26 Frank Mittelbach <[email protected]> | ||
|
||
* lthooks.dtx (subsection{Specifying code for next invocation}): | ||
Add debugging message into \AddToHookNext and friends (gh/1459) | ||
|
||
Slightly adjust messages in other places. | ||
|
||
2024-11-17 Frank Mittelbach <[email protected]> | ||
|
||
* ltmarks.dtx (section{Public interfaces for packages such as \pkg{multicol}}): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
|
||
\ExplSyntaxOn | ||
\debug_on:n { check-declarations , deprecation } | ||
\ExplSyntaxOff | ||
|
||
\documentclass{article} | ||
|
||
\input{regression-test} | ||
|
||
\newcommand\baz{} | ||
|
||
\begin{document} | ||
|
||
\START | ||
|
||
\DebugHooksOn | ||
|
||
\AddToHookNext{cmd/baz/before}{\typeout{--> next \string\baz 1}} | ||
|
||
\AddToHookNext{foo}{\typeout{--> undeclared foo}} | ||
|
||
\AddToHookNext{para/before}{\typeout{--> para/before 1}} | ||
|
||
\typeout{--------- same without Next ----------} | ||
|
||
\AddToHook{cmd/baz/before}{\typeout{--> next \string\baz 2}} | ||
|
||
\AddToHook{foo}{\typeout{--> undeclared foo}} | ||
|
||
\AddToHook{para/before}{\typeout{--> para/before 2}} | ||
|
||
|
||
\baz | ||
|
||
contenu... | ||
|
||
\DebugHooksOff | ||
|
||
\END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
This is a generated file for the l3build validation system. | ||
Don't change this file in any respect. | ||
-> Adding cmd hook to 'baz' (before): | ||
[lthooks] analyzing '\baz' | ||
[lthooks] \baz=\long macro:-> | ||
[lthooks] ++ control sequence is defined | ||
[lthooks] ++ control sequence is a macro | ||
[lthooks] ++ macro is not private | ||
[lthooks] ++ command can be patched without rescanning | ||
[lthooks] Update code for hook 'cmd/baz/before' on input line ...: | ||
[lthooks] Add to hook 'cmd/baz/before' (next invocation only) on input line ... | ||
[lthooks] <- \typeout {--> next \string \baz 1} | ||
[lthooks] Update code for hook 'foo' on input line ...: | ||
[lthooks] Add to undeclared hook 'foo' (next invocation only) on input line ... | ||
[lthooks] <- \typeout {--> undeclared foo} | ||
[lthooks] Add to hook 'para/before' (next invocation only) on input line ... | ||
[lthooks] <- \typeout {--> para/before 1} | ||
--------- same without Next ---------- | ||
[lthooks] Add to hook 'cmd/baz/before' (top-level) on input line ... | ||
[lthooks] <- \typeout {--> next \string \baz 2} | ||
[lthooks] Update code for hook 'cmd/baz/before' on input line ...: | ||
[lthooks] Add to undeclared hook 'foo' (top-level) on input line ... | ||
[lthooks] <- \typeout {--> undeclared foo} | ||
[lthooks] Add to hook 'para/before' (top-level) on input line ... | ||
[lthooks] <- \typeout {--> para/before 2} | ||
[lthooks] Update code for hook 'para/before' on input line ...: | ||
--> next \baz2 | ||
--> next \baz1 | ||
--> para/before 2 | ||
--> para/before 1 |
Oops, something went wrong.