summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/expl3/l3seq.dtx
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/expl3/l3seq.dtx')
-rw-r--r--Master/texmf-dist/source/latex/expl3/l3seq.dtx15
1 files changed, 8 insertions, 7 deletions
diff --git a/Master/texmf-dist/source/latex/expl3/l3seq.dtx b/Master/texmf-dist/source/latex/expl3/l3seq.dtx
index 4c06643d19b..4ce306b7d41 100644
--- a/Master/texmf-dist/source/latex/expl3/l3seq.dtx
+++ b/Master/texmf-dist/source/latex/expl3/l3seq.dtx
@@ -36,7 +36,7 @@
\RequirePackage{l3names}
%</driver|package>
%\fi
-\GetIdInfo$Id: l3seq.dtx 1415 2009-06-17 19:37:24Z will $
+\GetIdInfo$Id: l3seq.dtx 1692 2009-11-03 21:02:34Z joseph $
{L3 Experimental sequences and stacks}
%\iffalse
%<*driver>
@@ -331,6 +331,7 @@
% \end{function}
%
% \begin{function}{ \seq_if_in:Nn / (TF) |
+% \seq_if_in:NV / (TF) |
% \seq_if_in:cn / (TF) |
% \seq_if_in:cV / (TF) |
% \seq_if_in:co / (TF) |
@@ -583,7 +584,7 @@
% \end{macrocode}
% \end{macro}
%
-% \begin{macro}[TF]{\seq_if_in:Nn,\seq_if_in:cn,
+% \begin{macro}[TF]{\seq_if_in:Nn,\seq_if_in:NV,\seq_if_in:cn,
% \seq_if_in:cV,\seq_if_in:co,\seq_if_in:cx}
% |\seq_if_in:NnTF| \m{seq}\m{item} \m{true~case} \m{false~case}
% will check whether \m{item} is in \m{seq} and then either execute
@@ -603,9 +604,9 @@
}
% \end{macrocode}
% \begin{macrocode}
-\cs_generate_variant:Nn \seq_if_in:NnTF {cV,co,c,cx}
-\cs_generate_variant:Nn \seq_if_in:NnT {cV,co,c,cx}
-\cs_generate_variant:Nn \seq_if_in:NnF {cV,co,c,cx}
+\cs_generate_variant:Nn \seq_if_in:NnTF { NV, cV, co, c, cx}
+\cs_generate_variant:Nn \seq_if_in:NnT { NV, cV, co, c, cx}
+\cs_generate_variant:Nn \seq_if_in:NnF { NV, cV, co, c, cx}
% \end{macrocode}
% \end{macro}
%
@@ -888,12 +889,12 @@
% \begin{macro}{\seq_gremove_duplicates:N}
% Copied from "\clist_remove_duplicates".
% \begin{macrocode}
-\cs_new:Nn \seq_remove_duplicates_aux:NN {
+\cs_new:Npn \seq_remove_duplicates_aux:NN #1#2 {
\seq_clear:N \l_seq_remove_seq
\seq_map_function:NN #2 \seq_remove_duplicates_aux:n
#1 #2 \l_seq_remove_seq
}
-\cs_new:Nn \seq_remove_duplicates_aux:n {
+\cs_new:Npn \seq_remove_duplicates_aux:n #1 {
\seq_if_in:NnF \l_seq_remove_seq {#1} {
\seq_put_right:Nn \l_seq_remove_seq {#1}
}