summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-10-14 23:30:24 +0000
committerKarl Berry <karl@freefriends.org>2010-10-14 23:30:24 +0000
commitac155482e552dd85ebd61b7588e35ffa75a08222 (patch)
treeca86285fb546d55fd1b45f1c593ee270693b1835 /Master/texmf-dist/source
parent1d2d990e9b8c8c63f7fb9f08ee41c4e66ad77ff2 (diff)
expl3 (14oct10)
git-svn-id: svn://tug.org/texlive/trunk@20100 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r--Master/texmf-dist/source/latex/expl3/l3keys.dtx16
1 files changed, 8 insertions, 8 deletions
diff --git a/Master/texmf-dist/source/latex/expl3/l3keys.dtx b/Master/texmf-dist/source/latex/expl3/l3keys.dtx
index 0a61c516311..ffe0b56fce4 100644
--- a/Master/texmf-dist/source/latex/expl3/l3keys.dtx
+++ b/Master/texmf-dist/source/latex/expl3/l3keys.dtx
@@ -35,7 +35,7 @@
\RequirePackage{l3names}
%</driver|package>
%\fi
-\GetIdInfo$Id: l3keys.dtx 2063 2010-10-03 08:26:49Z mittelba $
+\GetIdInfo$Id: l3keys.dtx 2075 2010-10-13 19:06:55Z joseph $
{L3 Experimental key-value support}
%\iffalse
%<*driver>
@@ -528,12 +528,12 @@
%
%\section{Internal functions}
%
-%\begin{function}{\keys_bool_set:NN}
+%\begin{function}{\keys_bool_set:Nn}
% \begin{syntax}
-% "\keys_bool_set:NN" <bool> <scope>
+% "\keys_bool_set:Nn" <bool> \marg{scope}
% \end{syntax}
% Creates code to set <bool> when <key> is given, with setting using
-% <scope> (\texttt{l} or \texttt{g} for local or global,
+% <scope> (empty or \texttt{g} for local or global,
% respectively). <bool> should be a \LaTeX3 boolean variable.
%\end{function}
%
@@ -834,10 +834,10 @@
%
%\subsubsection{Internal functions}
%
-%\begin{macro}{\keys_bool_set:NN}
+%\begin{macro}{\keys_bool_set:Nn}
% Boolean keys are really just choices, but all done by hand.
% \begin{macrocode}
-\cs_new_protected_nopar:Npn \keys_bool_set:NN #1#2 {
+\cs_new_protected_nopar:Npn \keys_bool_set:Nn #1#2 {
\keys_cmd_set:nx { \l_keys_path_tl / true } {
\exp_not:c { bool_ #2 set_true:N }
\exp_not:N #1
@@ -1315,10 +1315,10 @@
% One function for this.
% \begin{macrocode}
\keys_property_new_arg:nn { .bool_set:N } {
- \keys_bool_set:NN #1 { }
+ \keys_bool_set:Nn #1 { }
}
\keys_property_new_arg:nn { .bool_gset:N } {
- \keys_bool_set:NN #1 n
+ \keys_bool_set:Nn #1 { g }
}
% \end{macrocode}
%\end{macro}