forked from latex3/latex2e
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # base/changes.txt
- Loading branch information
Showing
5 changed files
with
87 additions
and
43 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 |
---|---|---|
|
@@ -10,6 +10,11 @@ are not part of the distribution. | |
All changes above are only part of the development branch for the next release. | ||
================================================================================ | ||
|
||
|
||
######################### | ||
# 2020-10-01 PL 4 Release | ||
######################### | ||
|
||
2021-01-07 Phelype Oleinik <[email protected]> | ||
|
||
* ltfilehook.dtx: | ||
|
@@ -18,15 +23,20 @@ All changes above are only part of the development branch for the next release. | |
* lthooks.dtx: | ||
Modified internal copies of l3tl commands to avoid errors with l3debug (gh/463). | ||
|
||
######################### | ||
# 2020-10-01 PL 4 Release | ||
######################### | ||
2020-12-18 Phelype Oleinik <[email protected]> | ||
|
||
* lthooks.dtx: | ||
Preserve trailing slash in file hook name if the file name is empty (gh/464). | ||
|
||
* ltfilehook.dtx: | ||
Restore \CurrentFile(Path)(Used) after the file is input (gh/464). | ||
|
||
2020-12-03 Joseph Wright <[email protected]> | ||
|
||
* usrguide3.tex | ||
New file to cover creation of document commands | ||
|
||
|
||
######################### | ||
# 2020-10-01 PL 3 Release | ||
######################### | ||
|
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,18 @@ | ||
\RequirePackage[enable-debug]{expl3} | ||
\ExplSyntaxOn | ||
\debug_on:n { check-declarations , deprecation } | ||
\ExplSyntaxOff | ||
|
||
\begin{filecontents}{testA.tex} | ||
\egroup\bgroup | ||
\end{filecontents} | ||
|
||
\input{regression-test} | ||
|
||
\documentclass{article} | ||
\AddToHook{file/after}{\typeout{After "\CurrentFile"}} | ||
\START | ||
\bgroup | ||
\input{testA} | ||
\egroup | ||
\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,4 @@ | ||
This is a generated file for the l3build validation system. | ||
Don't change this file in any respect. | ||
(testA.tex) | ||
After "testA.tex" |