summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/l3kernel/l3prg.dtx
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/l3kernel/l3prg.dtx')
-rw-r--r--Master/texmf-dist/source/latex/l3kernel/l3prg.dtx24
1 files changed, 12 insertions, 12 deletions
diff --git a/Master/texmf-dist/source/latex/l3kernel/l3prg.dtx b/Master/texmf-dist/source/latex/l3kernel/l3prg.dtx
index c7fcb2a2790..54db54f0f58 100644
--- a/Master/texmf-dist/source/latex/l3kernel/l3prg.dtx
+++ b/Master/texmf-dist/source/latex/l3kernel/l3prg.dtx
@@ -35,7 +35,7 @@
%
%<*driver|package>
\RequirePackage{l3bootstrap}
-\GetIdInfo$Id: l3prg.dtx 4212 2012-09-09 12:24:04Z bruno $
+\GetIdInfo$Id: l3prg.dtx 4339 2012-11-24 19:16:43Z joseph $
{L3 Control structures}
%</driver|package>
%<*driver>
@@ -1124,17 +1124,17 @@
% \begin{macro}[aux]+\@@_|_1:w+
% \begin{macro}[aux]
% {
-% \@@_eval_skip_to_end:Nw,
-% \@@_eval_skip_to_end_ii:Nw,
-% \@@_eval_skip_to_end_iii:Nw
+% \@@_eval_skip_to_end_auxi:Nw,
+% \@@_eval_skip_to_end_auxii:Nw,
+% \@@_eval_skip_to_end_auxiii:Nw
% }
% When the truth value has already been decided, we have to throw away
% the remainder of the current group as we are doing minimal
% evaluation. This is slightly tricky as there are no braces so we
% have to play match the |()| manually.
% \begin{macrocode}
-\cs_new_nopar:cpn { @@_&_0:w } & { \@@_eval_skip_to_end:Nw \c_false_bool }
-\cs_new_nopar:cpn { @@_|_1:w } | { \@@_eval_skip_to_end:Nw \c_true_bool }
+\cs_new_nopar:cpn { @@_&_0:w } & { \@@_eval_skip_to_end_auxi:Nw \c_false_bool }
+\cs_new_nopar:cpn { @@_|_1:w } | { \@@_eval_skip_to_end_auxi:Nw \c_true_bool }
% \end{macrocode}
% There is always at least one |)| waiting, namely the outer
% one. However, we are facing the problem that there may be more than
@@ -1188,9 +1188,9 @@
% finally close the group nicely.
% \begin{macrocode}
%% (
-\cs_new:Npn \@@_eval_skip_to_end:Nw #1#2 )
+\cs_new:Npn \@@_eval_skip_to_end_auxi:Nw #1#2 )
{
- \@@_eval_skip_to_end_ii:Nw #1#2 ( % )
+ \@@_eval_skip_to_end_auxii:Nw #1#2 ( % )
\q_no_value \q_stop
{#2}
}
@@ -1199,20 +1199,20 @@
% the boolean |#1|. If there is, we need to grab a |()| pair and then
% recurse
% \begin{macrocode}
-\cs_new:Npn \@@_eval_skip_to_end_ii:Nw #1#2 ( #3#4 \q_stop #5 % )
+\cs_new:Npn \@@_eval_skip_to_end_auxii:Nw #1#2 ( #3#4 \q_stop #5 % )
{
\quark_if_no_value:NTF #3
{#1}
- { \@@_eval_skip_to_end_iii:Nw #1 #5 }
+ { \@@_eval_skip_to_end_auxiii:Nw #1 #5 }
}
% \end{macrocode}
% Keep the boolean, throw away anything up to the |(| as it is
% irrelevant, remove a |()| pair but remember to reinsert |#3| as it may
% contain |(| tokens!
% \begin{macrocode}
-\cs_new:Npn \@@_eval_skip_to_end_iii:Nw #1#2 ( #3 )
+\cs_new:Npn \@@_eval_skip_to_end_auxiii:Nw #1#2 ( #3 )
{ % (
- \@@_eval_skip_to_end:Nw #1#3 )
+ \@@_eval_skip_to_end_auxi:Nw #1#3 )
}
% \end{macrocode}
% \end{macro}