diff options
author | Karl Berry <karl@freefriends.org> | 2015-10-05 21:00:11 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-10-05 21:00:11 +0000 |
commit | 574a128b478f07856887f79f3b2e666e97ce9fed (patch) | |
tree | f7a7ff5c8122aad44c76fbfe823f9609d80aea65 /Master/texmf-dist/source/latex/l3build | |
parent | 93e764a1ea9faa8e9cc236040bb41e3e060fd6c2 (diff) |
l3build (5oct15)
git-svn-id: svn://tug.org/texlive/trunk@38563 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/l3build')
-rw-r--r-- | Master/texmf-dist/source/latex/l3build/l3build.dtx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Master/texmf-dist/source/latex/l3build/l3build.dtx b/Master/texmf-dist/source/latex/l3build/l3build.dtx index a68f9d6330e..a91a228d8f0 100644 --- a/Master/texmf-dist/source/latex/l3build/l3build.dtx +++ b/Master/texmf-dist/source/latex/l3build/l3build.dtx @@ -39,8 +39,8 @@ \RequirePackage{expl3} \def\ExplFileName{l3build} \def\ExplFileDescription{L3 Regression test suite} -\def\ExplFileDate{2015/09/27} -\def\ExplFileVersion{6111} +\def\ExplFileDate{2015/09/24} +\def\ExplFileVersion{6172} \documentclass[full]{l3doc} \renewcommand\partname{Part} \usepackage{multicol,needspace} @@ -1087,6 +1087,7 @@ ^^\endgroup{}% % \end{macrocode} % The test should end with |\END| or |\end{document}| +% or |\bye| in plain \TeX{}. % \begin{macrocode} \ifx\@@end\@undefined \let\@@@end\end @@ -1105,7 +1106,11 @@ \fi \LONGTYPEOUT{END-TEST-LOG}\@@@end } -\let\@@end\END +\ifx\@@end\@undefined + \let\end\END +\else + \let\@@end\END +\fi % \end{macrocode} % After the |\START| should come declarations of the format and style % options being used. |