[latex3-commits] [git/LaTeX3-latex3-latex3] master: l3doc.cls: fix bug when trying to read l3doc.cfg (ef39a40f5)
Florent Rougon
f.rougon at free.fr
Wed Sep 18 17:19:13 CEST 2019
Repository : https://github.com/latex3/latex3
On branch : master
Link : https://github.com/latex3/latex3/commit/ef39a40f586f8bec2464b4610e0d99c0f6411b6d
>---------------------------------------------------------------
commit ef39a40f586f8bec2464b4610e0d99c0f6411b6d
Author: Florent Rougon <f.rougon at free.fr>
Date: Wed Sep 18 17:13:13 2019 +0200
l3doc.cls: fix bug when trying to read l3doc.cfg
Don't use \file_input:nT, which has been removed in commit
ecd4174da983941f30d3231e44b526c079d674ec. Use \file_input:n instead.
>---------------------------------------------------------------
ef39a40f586f8bec2464b4610e0d99c0f6411b6d
l3kernel/l3doc.dtx | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/l3kernel/l3doc.dtx b/l3kernel/l3doc.dtx
index ddf376350..696cdd28f 100644
--- a/l3kernel/l3doc.dtx
+++ b/l3kernel/l3doc.dtx
@@ -1474,11 +1474,9 @@ and all files in that bundle must be distributed together.
{ Local~config~file~l3doc.cfg~loaded. }
\file_if_exist:nT { l3doc.cfg }
{
- \file_input:nT { l3doc.cfg }
- {
- \cs_if_exist:cF { ExplMakeTitle }
- { \msg_info:nn { l3doc } { input-cfg } }
- }
+ \file_input:n { l3doc.cfg }
+ \cs_if_exist:cF { ExplMakeTitle }
+ { \msg_info:nn { l3doc } { input-cfg } }
}
% \end{macrocode}
%
More information about the latex3-commits
mailing list