summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/expl3/l3int.dtx
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-09-27 00:38:35 +0000
committerKarl Berry <karl@freefriends.org>2010-09-27 00:38:35 +0000
commit6f75f25fe8d374ef4209118bd8849d742410ccd1 (patch)
treec485a2517a4fba54346c4492d4b34f0c8d815962 /Master/texmf-dist/source/latex/expl3/l3int.dtx
parent36e4bf755052bf5d5cef33cc2ffbad8f00b22163 (diff)
expl3 2047 (26sep10)
git-svn-id: svn://tug.org/texlive/trunk@19904 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/expl3/l3int.dtx')
-rw-r--r--Master/texmf-dist/source/latex/expl3/l3int.dtx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/texmf-dist/source/latex/expl3/l3int.dtx b/Master/texmf-dist/source/latex/expl3/l3int.dtx
index ae9c1cae3bc..10305ee5fe1 100644
--- a/Master/texmf-dist/source/latex/expl3/l3int.dtx
+++ b/Master/texmf-dist/source/latex/expl3/l3int.dtx
@@ -1,5 +1,5 @@
% \iffalse
-%% File: l3int.dtx Copyright (C) 1990-2009 LaTeX3 project
+%% File: l3int.dtx Copyright (C) 1990-2010 LaTeX3 project
%%
%% It may be distributed and/or modified under the conditions of the
%% LaTeX Project Public License (LPPL), either version 1.3c of this
@@ -36,7 +36,7 @@
\RequirePackage{l3names}
%</driver|package>
%\fi
-\GetIdInfo$Id: l3int.dtx 1933 2010-05-25 00:26:38Z will $
+\GetIdInfo$Id: l3int.dtx 2029 2010-09-19 13:59:02Z joseph $
{L3 Experimental Integer module}
%\iffalse
%<*driver>
@@ -1153,7 +1153,7 @@
% This is an intermediate function to get things started.
% \begin{macrocode}
\cs_new_nopar:Npn \int_convert_to_base_ten_aux:nn #1#2{
- \int_convert_to_base_ten_auxi:nnN {0}{#2} #1 \q_nil
+ \int_convert_to_base_ten_auxi:nnN {0}{#2} #1 \q_no_value
}
% \end{macrocode}
% Here we check each letter/digit and calculate the next number. |#1|
@@ -1161,7 +1161,7 @@
% |#2| is the base and |#3| is the next letter/digit to be added.
% \begin{macrocode}
\cs_new_nopar:Npn \int_convert_to_base_ten_auxi:nnN#1#2#3{
- \quark_if_nil:NTF #3
+ \quark_if_no_value:NTF #3
{#1}
{\exp_args:Nf\int_convert_to_base_ten_auxi:nnN
{\intexpr_eval:n{ #1*#2+\int_convert_letter_to_number:N #3} }