[latex3-commits] [latex3/latex3] develop: Use "tl var" consistently (fixes #1607) (fabb6fb02)

github at latex-project.org github at latex-project.org
Thu Oct 24 07:45:55 CEST 2024


Repository : https://github.com/latex3/latex3
On branch  : develop
Link       : https://github.com/latex3/latex3/commit/fabb6fb025022245c5720d96003aa12327ff057b

>---------------------------------------------------------------

commit fabb6fb025022245c5720d96003aa12327ff057b
Author: Joseph Wright <joseph at texdev.net>
Date:   Thu Oct 24 06:45:11 2024 +0100

    Use "tl var" consistently (fixes #1607)


>---------------------------------------------------------------

fabb6fb025022245c5720d96003aa12327ff057b
 l3kernel/l3clist.dtx |  38 ++++++-------
 l3kernel/l3doc.dtx   |   4 +-
 l3kernel/l3file.dtx  |  12 ++---
 l3kernel/l3keys.dtx  |   8 +--
 l3kernel/l3prop.dtx  |  32 +++++------
 l3kernel/l3seq.dtx   | 148 +++++++++++++++++++++++++--------------------------
 l3kernel/l3tl.dtx    |   2 +-
 7 files changed, 122 insertions(+), 122 deletions(-)

diff --git a/l3kernel/l3clist.dtx b/l3kernel/l3clist.dtx
index 2f61ef3e8..0de479a95 100644
--- a/l3kernel/l3clist.dtx
+++ b/l3kernel/l3clist.dtx
@@ -652,60 +652,60 @@
 % \begin{function}[noTF, added = 2012-05-14, updated = 2019-02-16]
 %   {\clist_get:NN, \clist_get:cN}
 %   \begin{syntax}
-%     \cs{clist_get:NN} \meta{clist~var} \meta{token list variable}
+%     \cs{clist_get:NN} \meta{clist~var} \meta{tl~var}
 %   \end{syntax}
 %   Stores the left-most item from a \meta{clist~var} in the
-%   \meta{token list variable} without removing it from the
-%   \meta{clist~var}. The \meta{token list variable} is assigned locally.
+%   \meta{tl~var} without removing it from the
+%   \meta{clist~var}. The \meta{tl~var} is assigned locally.
 %   In the non-branching version, if the \meta{clist~var} is empty the
-%   \meta{token list variable} is set to the marker value \cs{q_no_value}.
+%   \meta{tl~var} is set to the marker value \cs{q_no_value}.
 % \end{function}
 %
 % \begin{function}[updated = 2011-09-06]{\clist_pop:NN, \clist_pop:cN}
 %   \begin{syntax}
-%     \cs{clist_pop:NN} \meta{clist~var} \meta{token list variable}
+%     \cs{clist_pop:NN} \meta{clist~var} \meta{tl~var}
 %   \end{syntax}
 %   Pops the left-most item from a \meta{clist~var} into the
-%   \meta{token list variable}, \emph{i.e.}~removes the item from the
-%   comma list and stores it in the \meta{token list variable}.
+%   \meta{tl~var}, \emph{i.e.}~removes the item from the
+%   comma list and stores it in the \meta{tl~var}.
 %   Both of the variables are assigned locally.
 % \end{function}
 %
 % \begin{function}{\clist_gpop:NN, \clist_gpop:cN}
 %   \begin{syntax}
-%     \cs{clist_gpop:NN} \meta{clist~var} \meta{token list variable}
+%     \cs{clist_gpop:NN} \meta{clist~var} \meta{tl~var}
 %   \end{syntax}
 %   Pops the left-most item from a \meta{clist~var} into the
-%   \meta{token list variable}, \emph{i.e.}~removes the item from the
-%   comma list and stores it in the \meta{token list variable}.
+%   \meta{tl~var}, \emph{i.e.}~removes the item from the
+%   comma list and stores it in the \meta{tl~var}.
 %   The \meta{clist~var} is modified globally, while the assignment of
-%   the \meta{token list variable} is local.
+%   the \meta{tl~var} is local.
 % \end{function}
 %
 % \begin{function}[TF, added = 2012-05-14]{\clist_pop:NN, \clist_pop:cN}
 %   \begin{syntax}
-%     \cs{clist_pop:NNTF} \meta{clist~var} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{clist_pop:NNTF} \meta{clist~var} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{clist~var} is empty, leaves the \meta{false code} in the
-%   input stream.  The value of the \meta{token list variable} is
+%   input stream.  The value of the \meta{tl~var} is
 %   not defined in this case and should not be relied upon.  If the
 %   \meta{clist~var} is non-empty, pops the top item from the
-%   \meta{clist~var} in the \meta{token list variable}, \emph{i.e.}~removes
+%   \meta{clist~var} in the \meta{tl~var}, \emph{i.e.}~removes
 %   the item from the \meta{clist~var}. Both the \meta{clist~var} and the
-%   \meta{token list variable} are assigned locally.
+%   \meta{tl~var} are assigned locally.
 % \end{function}
 %
 % \begin{function}[TF, added = 2012-05-14]{\clist_gpop:NN, \clist_gpop:cN}
 %   \begin{syntax}
-%     \cs{clist_gpop:NNTF} \meta{clist~var} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{clist_gpop:NNTF} \meta{clist~var} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{clist~var} is empty, leaves the \meta{false code} in the
-%   input stream.  The value of the \meta{token list variable} is
+%   input stream.  The value of the \meta{tl~var} is
 %   not defined in this case and should not be relied upon.  If the
 %   \meta{clist~var} is non-empty, pops the top item from the
-%   \meta{clist~var} in the \meta{token list variable}, \emph{i.e.}~removes
+%   \meta{clist~var} in the \meta{tl~var}, \emph{i.e.}~removes
 %   the item from the \meta{clist~var}. The \meta{clist~var} is modified
-%   globally, while the \meta{token list variable} is assigned locally.
+%   globally, while the \meta{tl~var} is assigned locally.
 % \end{function}
 %
 % \begin{function}
diff --git a/l3kernel/l3doc.dtx b/l3kernel/l3doc.dtx
index 778c0085e..dcdb7d26b 100644
--- a/l3kernel/l3doc.dtx
+++ b/l3kernel/l3doc.dtx
@@ -471,7 +471,7 @@ and all files in that bundle must be distributed together.
 %     \cs{tl_if_empty_p:N} \meta{tl~var}
 %     \cs{tl_if_empty:NTF} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
-%   Tests if the \meta{token list variable} is entirely empty
+%   Tests if the \meta{tl~var} is entirely empty
 %   (\emph{i.e.}~contains no tokens at all).
 % \end{function}
 % \end{verbatim}
@@ -484,7 +484,7 @@ and all files in that bundle must be distributed together.
 %         \cs{tl_if_empty_p:N} \meta{tl~var}
 %         \cs{tl_if_empty:NTF} \meta{tl~var} \Arg{true code} \Arg{false code}
 %       \end{syntax}
-%       Tests if the \meta{token list variable} is entirely empty
+%       Tests if the \meta{tl~var} is entirely empty
 %       (\emph{i.e.}~contains no tokens at all).
 %     \end{function}
 %   \end{minipage}
diff --git a/l3kernel/l3file.dtx b/l3kernel/l3file.dtx
index 6a66f9fc1..d2805b6b4 100644
--- a/l3kernel/l3file.dtx
+++ b/l3kernel/l3file.dtx
@@ -225,8 +225,8 @@
 %
 % \begin{function}[noTF, added = 2012-06-24, updated = 2019-03-23]{\ior_get:NN}
 %   \begin{syntax}
-%     \cs{ior_get:NN} \meta{stream} \meta{token list variable}
-%     \cs{ior_get:NNTF} \meta{stream} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{ior_get:NN} \meta{stream} \meta{tl~var}
+%     \cs{ior_get:NNTF} \meta{stream} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   Function that reads one or more lines (until an equal number of left
 %   and right braces are found) from the file input \meta{stream} and stores
@@ -267,8 +267,8 @@
 % \begin{function}[noTF, added = 2016-12-04, updated = 2019-03-23]
 %   {\ior_str_get:NN}
 %   \begin{syntax}
-%     \cs{ior_str_get:NN} \meta{stream} \meta{token list variable}
-%     \cs{ior_str_get:NNTF} \meta{stream} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{ior_str_get:NN} \meta{stream} \meta{tl~var}
+%     \cs{ior_str_get:NNTF} \meta{stream} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   Function that reads one line from the file input \meta{stream} and stores
 %   the result locally in the \meta{token list} variable.
@@ -277,7 +277,7 @@
 %   characters which are given category code $10$ (space).
 %   Multiple whitespace characters are retained by this process.  It
 %   always only reads one line and any blank lines in the input
-%   result in the \meta{token list variable} being empty. Unlike
+%   result in the \meta{tl~var} being empty. Unlike
 %   \cs{ior_get:NN}, line ends do not receive any special treatment. Thus
 %   input
 %   \begin{verbatim}
@@ -429,7 +429,7 @@
 %
 % \begin{function}[added = 2019-03-23]{\ior_get_term:nN, \ior_str_get_term:nN}
 %   \begin{syntax}
-%     \cs{ior_get_term:nN} \Arg{prompt} \meta{token list variable}
+%     \cs{ior_get_term:nN} \Arg{prompt} \meta{tl~var}
 %   \end{syntax}
 %   Function that reads one or more lines (until an equal number of left
 %   and right braces are found) from the terminal and stores
diff --git a/l3kernel/l3keys.dtx b/l3kernel/l3keys.dtx
index 0a808ac1b..b0371b9c3 100644
--- a/l3kernel/l3keys.dtx
+++ b/l3kernel/l3keys.dtx
@@ -500,9 +500,9 @@
 %
 % \begin{function}{.tl_set:N, .tl_set:c, .tl_gset:N, .tl_gset:c}
 %   \begin{syntax}
-%     \meta{key} .tl_set:N = \meta{token list variable}
+%     \meta{key} .tl_set:N = \meta{tl~var}
 %   \end{syntax}
-%   Defines \meta{key} to set \meta{token list variable} to \meta{value}.
+%   Defines \meta{key} to set \meta{tl~var} to \meta{value}.
 %   If the variable does not exist, it is created globally
 %   at the point that the key is set up.
 % \end{function}
@@ -510,9 +510,9 @@
 % \begin{function}[added = 2023-09-18]
 %   {.tl_set_e:N, .tl_set_e:c, .tl_gset_e:N, .tl_gset_e:c}
 %   \begin{syntax}
-%     \meta{key} .tl_set_e:N = \meta{token list variable}
+%     \meta{key} .tl_set_e:N = \meta{tl~var}
 %   \end{syntax}
-%   Defines \meta{key} to set \meta{token list variable} to \meta{value},
+%   Defines \meta{key} to set \meta{tl~var} to \meta{value},
 %   which will be subjected to an \texttt{e}-type expansion
 %   (\emph{i.e.}~using \cs{tl_set:Ne}). If the variable does not exist,
 %   it is created globally at the point that the key is set up.
diff --git a/l3kernel/l3prop.dtx b/l3kernel/l3prop.dtx
index 0a0d8de12..18a7faf5d 100644
--- a/l3kernel/l3prop.dtx
+++ b/l3kernel/l3prop.dtx
@@ -386,7 +386,7 @@
 %   Recovers the \meta{value} stored with \meta{key} from the
 %   \meta{property list}, and places this in the \meta{token list
 %   variable}. If the \meta{key} is not found in the
-%   \meta{property list} then the \meta{token list variable} is set
+%   \meta{property list} then the \meta{tl~var} is set
 %   to the special marker \cs{q_no_value}. The \meta{token list
 %     variable} is set within the current \TeX{} group. See also
 %   \cs{prop_get:NnNTF}.
@@ -405,7 +405,7 @@
 %   Recovers the \meta{value} stored with \meta{key} from the
 %   \meta{property list}, and places this in the \meta{token list
 %   variable}. If the \meta{key} is not found in the
-%   \meta{property list} then the \meta{token list variable} is set
+%   \meta{property list} then the \meta{tl~var} is set
 %   to the special marker \cs{q_no_value}. The \meta{key} and
 %   \meta{value} are then deleted from the property list. Both
 %   assignments are local.  See also \cs{prop_pop:NnNTF}.
@@ -424,11 +424,11 @@
 %   Recovers the \meta{value} stored with \meta{key} from the
 %   \meta{property list}, and places this in the \meta{token list
 %   variable}. If the \meta{key} is not found in the
-%   \meta{property list} then the \meta{token list variable} is set
+%   \meta{property list} then the \meta{tl~var} is set
 %   to the special marker \cs{q_no_value}. The \meta{key} and
 %   \meta{value} are then deleted from the property list.
 %   The \meta{property list} is modified globally, while the assignment of
-%   the \meta{token list variable} is local.  See also \cs{prop_gpop:NnNTF}.
+%   the \meta{tl~var} is local.  See also \cs{prop_gpop:NnNTF}.
 % \end{function}
 %
 % \begin{function}[EXP, added = 2014-07-17]
@@ -553,17 +553,17 @@
 %     \prop_get:cnc
 %   }
 %   \begin{syntax}
-%     \cs{prop_get:NnNTF} \meta{property list} \Arg{key} \meta{token list variable} \\
+%     \cs{prop_get:NnNTF} \meta{property list} \Arg{key} \meta{tl~var} \\
 %     ~~\Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{key} is not present in the \meta{property list}, leaves
 %   the \meta{false code} in the input stream.  The value of the
-%   \meta{token list variable} is not defined in this case and should
+%   \meta{tl~var} is not defined in this case and should
 %   not be relied upon.  If the \meta{key} is present in the
 %   \meta{property list}, stores the corresponding \meta{value} in the
-%   \meta{token list variable} without removing it from the
+%   \meta{tl~var} without removing it from the
 %   \meta{property list}, then leaves the \meta{true code} in the input
-%   stream.  The \meta{token list variable} is assigned locally.
+%   stream.  The \meta{tl~var} is assigned locally.
 % \end{function}
 %
 % \begin{function}[TF, added = 2011-08-18, updated = 2012-05-19]
@@ -574,17 +574,17 @@
 %     \prop_pop:coN
 %   }
 %   \begin{syntax}
-%     \cs{prop_pop:NnNTF} \meta{property list} \Arg{key} \meta{token list variable} \\
+%     \cs{prop_pop:NnNTF} \meta{property list} \Arg{key} \meta{tl~var} \\
 %     ~~\Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{key} is not present in the \meta{property list}, leaves
 %   the \meta{false code} in the input stream.  The value of the
-%   \meta{token list variable} is not defined in this case and should
+%   \meta{tl~var} is not defined in this case and should
 %   not be relied upon.  If the \meta{key} is present in
 %   the \meta{property list}, pops the corresponding \meta{value}
-%   in the \meta{token list variable}, \emph{i.e.}~removes the item from
+%   in the \meta{tl~var}, \emph{i.e.}~removes the item from
 %   the \meta{property list}.
-%   Both the \meta{property list} and the \meta{token list variable}
+%   Both the \meta{property list} and the \meta{tl~var}
 %   are assigned locally.
 % \end{function}
 %
@@ -596,18 +596,18 @@
 %     \prop_gpop:coN
 %   }
 %   \begin{syntax}
-%     \cs{prop_gpop:NnNTF} \meta{property list} \Arg{key} \meta{token list variable} \\
+%     \cs{prop_gpop:NnNTF} \meta{property list} \Arg{key} \meta{tl~var} \\
 %     ~~\Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{key} is not present in the \meta{property list}, leaves
 %   the \meta{false code} in the input stream.  The value of the
-%   \meta{token list variable} is not defined in this case and should
+%   \meta{tl~var} is not defined in this case and should
 %   not be relied upon.  If the \meta{key} is present in
 %   the \meta{property list}, pops the corresponding \meta{value}
-%   in the \meta{token list variable}, \emph{i.e.}~removes the item from
+%   in the \meta{tl~var}, \emph{i.e.}~removes the item from
 %   the \meta{property list}.
 %   The \meta{property list} is modified globally, while the
-%   \meta{token list variable} is assigned locally.
+%   \meta{tl~var} is assigned locally.
 % \end{function}
 %
 % \section{Mapping over property lists}
diff --git a/l3kernel/l3seq.dtx b/l3kernel/l3seq.dtx
index e747c9876..8bf975ba6 100644
--- a/l3kernel/l3seq.dtx
+++ b/l3kernel/l3seq.dtx
@@ -249,78 +249,78 @@
 % For implementation reasons, the actions at the left of the sequence are
 % faster than those acting on the right. These functions all assign the
 % recovered material locally, \emph{i.e.}~setting the
-% \meta{token list variable} used with \cs{tl_set:Nn} and \emph{never}
+% \meta{tl~var} used with \cs{tl_set:Nn} and \emph{never}
 % \cs{tl_gset:Nn}.
 %
 % \begin{function}[updated = 2012-05-14]{\seq_get_left:NN, \seq_get_left:cN}
 %   \begin{syntax}
-%     \cs{seq_get_left:NN} \meta{seq~var} \meta{token list variable}
+%     \cs{seq_get_left:NN} \meta{seq~var} \meta{tl~var}
 %   \end{syntax}
 %   Stores the left-most item from a \meta{seq~var} in the
-%   \meta{token list variable} without removing it from the
-%   \meta{seq~var}. The \meta{token list variable} is assigned locally.
-%   If \meta{seq~var} is empty the \meta{token list variable}
+%   \meta{tl~var} without removing it from the
+%   \meta{seq~var}. The \meta{tl~var} is assigned locally.
+%   If \meta{seq~var} is empty the \meta{tl~var}
 %   is set to the special marker \cs{q_no_value}.
 % \end{function}
 %
 % \begin{function}[updated = 2012-05-19]{\seq_get_right:NN, \seq_get_right:cN}
 %   \begin{syntax}
-%     \cs{seq_get_right:NN} \meta{seq~var} \meta{token list variable}
+%     \cs{seq_get_right:NN} \meta{seq~var} \meta{tl~var}
 %   \end{syntax}
 %   Stores the right-most item from a \meta{seq~var} in the
-%   \meta{token list variable} without removing it from the
-%   \meta{seq~var}. The \meta{token list variable} is assigned locally.
-%   If \meta{seq~var} is empty the \meta{token list variable}
+%   \meta{tl~var} without removing it from the
+%   \meta{seq~var}. The \meta{tl~var} is assigned locally.
+%   If \meta{seq~var} is empty the \meta{tl~var}
 %   is set to the special marker \cs{q_no_value}.
 % \end{function}
 %
 % \begin{function}[updated = 2012-05-14]{\seq_pop_left:NN, \seq_pop_left:cN}
 %   \begin{syntax}
-%     \cs{seq_pop_left:NN} \meta{seq~var} \meta{token list variable}
+%     \cs{seq_pop_left:NN} \meta{seq~var} \meta{tl~var}
 %   \end{syntax}
 %   Pops the left-most item from a \meta{seq~var} into the
-%   \meta{token list variable}, \emph{i.e.}~removes the item from the
-%   sequence and stores it in the \meta{token list variable}.
+%   \meta{tl~var}, \emph{i.e.}~removes the item from the
+%   sequence and stores it in the \meta{tl~var}.
 %   Both of the variables are assigned locally. If \meta{seq~var} is
-%   empty the \meta{token list variable} is set to
+%   empty the \meta{tl~var} is set to
 %   the special marker \cs{q_no_value}.
 % \end{function}
 %
 % \begin{function}[updated = 2012-05-14]{\seq_gpop_left:NN, \seq_gpop_left:cN}
 %   \begin{syntax}
-%     \cs{seq_gpop_left:NN} \meta{seq~var} \meta{token list variable}
+%     \cs{seq_gpop_left:NN} \meta{seq~var} \meta{tl~var}
 %   \end{syntax}
 %   Pops the left-most item from a \meta{seq~var} into the
-%   \meta{token list variable}, \emph{i.e.}~removes the item from the
-%   sequence and stores it in the \meta{token list variable}.
+%   \meta{tl~var}, \emph{i.e.}~removes the item from the
+%   sequence and stores it in the \meta{tl~var}.
 %   The \meta{seq~var} is modified globally, while the assignment of
-%   the \meta{token list variable} is local.
-%   If \meta{seq~var} is empty the \meta{token list variable} is set to
+%   the \meta{tl~var} is local.
+%   If \meta{seq~var} is empty the \meta{tl~var} is set to
 %   the special marker \cs{q_no_value}.
 % \end{function}
 %
 % \begin{function}[updated = 2012-05-19]{\seq_pop_right:NN, \seq_pop_right:cN}
 %   \begin{syntax}
-%     \cs{seq_pop_right:NN} \meta{seq~var} \meta{token list variable}
+%     \cs{seq_pop_right:NN} \meta{seq~var} \meta{tl~var}
 %   \end{syntax}
 %   Pops the right-most item from a \meta{seq~var} into the
-%   \meta{token list variable}, \emph{i.e.}~removes the item from the
-%   sequence and stores it in the \meta{token list variable}.
+%   \meta{tl~var}, \emph{i.e.}~removes the item from the
+%   sequence and stores it in the \meta{tl~var}.
 %   Both of the variables are assigned locally. If \meta{seq~var} is
-%   empty the \meta{token list variable} is set to
+%   empty the \meta{tl~var} is set to
 %   the special marker \cs{q_no_value}.
 % \end{function}
 %
 % \begin{function}[updated = 2012-05-19]{\seq_gpop_right:NN, \seq_gpop_right:cN}
 %   \begin{syntax}
-%     \cs{seq_gpop_right:NN} \meta{seq~var} \meta{token list variable}
+%     \cs{seq_gpop_right:NN} \meta{seq~var} \meta{tl~var}
 %   \end{syntax}
 %   Pops the right-most item from a \meta{seq~var} into the
-%   \meta{token list variable}, \emph{i.e.}~removes the item from the
-%   sequence and stores it in the \meta{token list variable}.
+%   \meta{tl~var}, \emph{i.e.}~removes the item from the
+%   sequence and stores it in the \meta{tl~var}.
 %   The \meta{seq~var} is modified globally, while the assignment of
-%   the \meta{token list variable} is local.
-%   If \meta{seq~var} is empty the \meta{token list variable} is set to
+%   the \meta{tl~var} is local.
+%   If \meta{seq~var} is empty the \meta{tl~var} is set to
 %   the special marker \cs{q_no_value}.
 % \end{function}
 %
@@ -371,92 +371,92 @@
 % \begin{function}[TF, added = 2012-05-14, updated = 2012-05-19]
 %   {\seq_get_left:NN, \seq_get_left:cN}
 %   \begin{syntax}
-%     \cs{seq_get_left:NNTF} \meta{seq~var} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{seq_get_left:NNTF} \meta{seq~var} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{seq~var} is empty, leaves the \meta{false code} in the
-%   input stream.  The value of the \meta{token list variable} is
+%   input stream.  The value of the \meta{tl~var} is
 %   not defined in this case and should not be relied upon.  If the
 %   \meta{seq~var} is non-empty, stores the left-most item from the
 %   \meta{seq~var}
-%   in the \meta{token list variable} without removing it from the
+%   in the \meta{tl~var} without removing it from the
 %   \meta{seq~var}, then leaves the \meta{true code} in the input stream.
-%   The \meta{token list variable} is assigned locally.
+%   The \meta{tl~var} is assigned locally.
 % \end{function}
 %
 % \begin{function}[TF, added = 2012-05-19]
 %   {\seq_get_right:NN, \seq_get_right:cN}
 %   \begin{syntax}
-%     \cs{seq_get_right:NNTF} \meta{seq~var} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{seq_get_right:NNTF} \meta{seq~var} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{seq~var} is empty, leaves the \meta{false code} in the
-%   input stream.  The value of the \meta{token list variable} is
+%   input stream.  The value of the \meta{tl~var} is
 %   not defined in this case and should not be relied upon.  If the
 %   \meta{seq~var} is non-empty, stores the right-most item from the
 %   \meta{seq~var}
-%   in the \meta{token list variable} without removing it from the
+%   in the \meta{tl~var} without removing it from the
 %   \meta{seq~var}, then leaves the \meta{true code} in the input stream.
-%   The \meta{token list variable} is assigned locally.
+%   The \meta{tl~var} is assigned locally.
 % \end{function}
 %
 % \begin{function}[TF, added = 2012-05-14, updated = 2012-05-19]
 %   {\seq_pop_left:NN, \seq_pop_left:cN}
 %   \begin{syntax}
-%     \cs{seq_pop_left:NNTF} \meta{seq~var} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{seq_pop_left:NNTF} \meta{seq~var} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{seq~var} is empty, leaves the \meta{false code} in the
-%   input stream.  The value of the \meta{token list variable} is
+%   input stream.  The value of the \meta{tl~var} is
 %   not defined in this case and should not be relied upon.  If the
 %   \meta{seq~var} is non-empty, pops the left-most item from the
 %   \meta{seq~var}
-%   in the \meta{token list variable}, \emph{i.e.}~removes the item from the
+%   in the \meta{tl~var}, \emph{i.e.}~removes the item from the
 %   \meta{seq~var}, then leaves the \meta{true code} in the input stream.
-%   Both the \meta{seq~var} and the \meta{token list variable} are assigned
+%   Both the \meta{seq~var} and the \meta{tl~var} are assigned
 %   locally.
 % \end{function}
 %
 % \begin{function}[TF, added = 2012-05-14, updated = 2012-05-19]
 %   {\seq_gpop_left:NN, \seq_gpop_left:cN}
 %   \begin{syntax}
-%     \cs{seq_gpop_left:NNTF} \meta{seq~var} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{seq_gpop_left:NNTF} \meta{seq~var} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{seq~var} is empty, leaves the \meta{false code} in the
-%   input stream.  The value of the \meta{token list variable} is
+%   input stream.  The value of the \meta{tl~var} is
 %   not defined in this case and should not be relied upon.  If the
 %   \meta{seq~var} is non-empty, pops the left-most item from the \meta{seq~var}
-%   in the \meta{token list variable}, \emph{i.e.}~removes the item from the
+%   in the \meta{tl~var}, \emph{i.e.}~removes the item from the
 %   \meta{seq~var}, then leaves the \meta{true code} in the input stream.
-%   The \meta{seq~var} is modified globally, while the \meta{token list variable}
+%   The \meta{seq~var} is modified globally, while the \meta{tl~var}
 %   is assigned locally.
 % \end{function}
 %
 % \begin{function}[TF, added = 2012-05-19]
 %   {\seq_pop_right:NN, \seq_pop_right:cN}
 %   \begin{syntax}
-%     \cs{seq_pop_right:NNTF} \meta{seq~var} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{seq_pop_right:NNTF} \meta{seq~var} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{seq~var} is empty, leaves the \meta{false code} in the
-%   input stream.  The value of the \meta{token list variable} is
+%   input stream.  The value of the \meta{tl~var} is
 %   not defined in this case and should not be relied upon.  If the
 %   \meta{seq~var} is non-empty, pops the right-most item from the \meta{seq~var}
-%   in the \meta{token list variable}, \emph{i.e.}~removes the item from the
+%   in the \meta{tl~var}, \emph{i.e.}~removes the item from the
 %   \meta{seq~var}, then leaves the \meta{true code} in the input stream.
-%   Both the \meta{seq~var} and the \meta{token list variable} are assigned
+%   Both the \meta{seq~var} and the \meta{tl~var} are assigned
 %   locally.
 % \end{function}
 %
 % \begin{function}[TF, added = 2012-05-19]
 %   {\seq_gpop_right:NN, \seq_gpop_right:cN}
 %   \begin{syntax}
-%     \cs{seq_gpop_right:NNTF} \meta{seq~var} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{seq_gpop_right:NNTF} \meta{seq~var} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{seq~var} is empty, leaves the \meta{false code} in the
-%   input stream.  The value of the \meta{token list variable} is
+%   input stream.  The value of the \meta{tl~var} is
 %   not defined in this case and should not be relied upon.  If the
 %   \meta{seq~var} is non-empty, pops the right-most item from the \meta{seq~var}
-%   in the \meta{token list variable}, \emph{i.e.}~removes the item from the
+%   in the \meta{tl~var}, \emph{i.e.}~removes the item from the
 %   \meta{seq~var}, then leaves the \meta{true code} in the input stream.
 %   The \meta{seq~var} is modified globally, while the
-%   \meta{token list variable} is assigned locally.
+%   \meta{tl~var} is assigned locally.
 % \end{function}
 %
 % \section{Modifying sequences}
@@ -852,72 +852,72 @@
 %
 % \begin{function}[updated = 2012-05-14]{\seq_get:NN, \seq_get:cN}
 %   \begin{syntax}
-%     \cs{seq_get:NN} \meta{seq~var} \meta{token list variable}
+%     \cs{seq_get:NN} \meta{seq~var} \meta{tl~var}
 %   \end{syntax}
 %   Reads the top item from a \meta{seq~var} into the
-%   \meta{token list variable} without removing it from the
-%   \meta{seq~var}. The \meta{token list variable} is assigned locally.
-%   If \meta{seq~var} is empty the \meta{token list variable} is set to
+%   \meta{tl~var} without removing it from the
+%   \meta{seq~var}. The \meta{tl~var} is assigned locally.
+%   If \meta{seq~var} is empty the \meta{tl~var} is set to
 %   the special marker \cs{q_no_value}.
 % \end{function}
 %
 % \begin{function}[updated = 2012-05-14]{\seq_pop:NN, \seq_pop:cN}
 %   \begin{syntax}
-%     \cs{seq_pop:NN} \meta{seq~var} \meta{token list variable}
+%     \cs{seq_pop:NN} \meta{seq~var} \meta{tl~var}
 %   \end{syntax}
 %   Pops the top item from a \meta{seq~var} into the
-%   \meta{token list variable}. Both of the variables are assigned
-%   locally. If \meta{seq~var} is empty the \meta{token list variable}
+%   \meta{tl~var}. Both of the variables are assigned
+%   locally. If \meta{seq~var} is empty the \meta{tl~var}
 %   is set to the special marker \cs{q_no_value}.
 % \end{function}
 %
 % \begin{function}[updated = 2012-05-14]{\seq_gpop:NN, \seq_gpop:cN}
 %   \begin{syntax}
-%     \cs{seq_gpop:NN} \meta{seq~var} \meta{token list variable}
+%     \cs{seq_gpop:NN} \meta{seq~var} \meta{tl~var}
 %   \end{syntax}
 %   Pops the top item from a \meta{seq~var} into the
-%   \meta{token list variable}. The \meta{seq~var} is modified globally,
-%   while the \meta{token list variable} is assigned locally. If
-%   \meta{seq~var} is empty the \meta{token list variable} is set to
+%   \meta{tl~var}. The \meta{seq~var} is modified globally,
+%   while the \meta{tl~var} is assigned locally. If
+%   \meta{seq~var} is empty the \meta{tl~var} is set to
 %   the special marker \cs{q_no_value}.
 % \end{function}
 %
 % \begin{function}[TF, added = 2012-05-14, updated = 2012-05-19]{\seq_get:NN, \seq_get:cN}
 %   \begin{syntax}
-%     \cs{seq_get:NNTF} \meta{seq~var} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{seq_get:NNTF} \meta{seq~var} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{seq~var} is empty, leaves the \meta{false code} in the
-%   input stream.  The value of the \meta{token list variable} is
+%   input stream.  The value of the \meta{tl~var} is
 %   not defined in this case and should not be relied upon.  If the
 %   \meta{seq~var} is non-empty, stores the top item from a
-%   \meta{seq~var} in the \meta{token list variable} without removing it from
-%   the \meta{seq~var}. The \meta{token list variable} is assigned locally.
+%   \meta{seq~var} in the \meta{tl~var} without removing it from
+%   the \meta{seq~var}. The \meta{tl~var} is assigned locally.
 % \end{function}
 %
 % \begin{function}[TF, added = 2012-05-14, updated = 2012-05-19]{\seq_pop:NN, \seq_pop:cN}
 %   \begin{syntax}
-%     \cs{seq_pop:NNTF} \meta{seq~var} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{seq_pop:NNTF} \meta{seq~var} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{seq~var} is empty, leaves the \meta{false code} in the
-%   input stream.  The value of the \meta{token list variable} is
+%   input stream.  The value of the \meta{tl~var} is
 %   not defined in this case and should not be relied upon.  If the
 %   \meta{seq~var} is non-empty, pops the top item from the
-%   \meta{seq~var} in the \meta{token list variable}, \emph{i.e.}~removes the
+%   \meta{seq~var} in the \meta{tl~var}, \emph{i.e.}~removes the
 %   item from the \meta{seq~var}. Both the \meta{seq~var} and the
-%   \meta{token list variable} are assigned locally.
+%   \meta{tl~var} are assigned locally.
 % \end{function}
 %
 % \begin{function}[TF, added = 2012-05-14, updated = 2012-05-19]{\seq_gpop:NN, \seq_gpop:cN}
 %   \begin{syntax}
-%     \cs{seq_gpop:NNTF} \meta{seq~var} \meta{token list variable} \Arg{true code} \Arg{false code}
+%     \cs{seq_gpop:NNTF} \meta{seq~var} \meta{tl~var} \Arg{true code} \Arg{false code}
 %   \end{syntax}
 %   If the \meta{seq~var} is empty, leaves the \meta{false code} in the
-%   input stream.  The value of the \meta{token list variable} is
+%   input stream.  The value of the \meta{tl~var} is
 %   not defined in this case and should not be relied upon.  If the
 %   \meta{seq~var} is non-empty, pops the top item from the \meta{seq~var}
-%   in the \meta{token list variable}, \emph{i.e.}~removes the item from the
+%   in the \meta{tl~var}, \emph{i.e.}~removes the item from the
 %   \meta{seq~var}. The \meta{seq~var} is modified globally, while the
-%   \meta{token list variable} is assigned locally.
+%   \meta{tl~var} is assigned locally.
 % \end{function}
 %
 % \begin{function}
diff --git a/l3kernel/l3tl.dtx b/l3kernel/l3tl.dtx
index 47194bac4..06842af6c 100644
--- a/l3kernel/l3tl.dtx
+++ b/l3kernel/l3tl.dtx
@@ -55,7 +55,7 @@
 % \begin{verbatim}
 %   \foo:n { a collection of \tokens }
 % \end{verbatim}
-% or may be stored in a so-called \enquote{token list variable}, which
+% or may be stored in a so-called \enquote{tl~var} (\meta{tl~var}), which
 % have the suffix \texttt{tl}: a token list variable can also be used as
 % the argument to a function, for example
 % \begin{verbatim}





More information about the latex3-commits mailing list.