summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/l3kernel/l3fp-assign.dtx
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/l3kernel/l3fp-assign.dtx')
-rw-r--r--Master/texmf-dist/source/latex/l3kernel/l3fp-assign.dtx10
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/texmf-dist/source/latex/l3kernel/l3fp-assign.dtx b/Master/texmf-dist/source/latex/l3kernel/l3fp-assign.dtx
index 142a3c5afac..c207d30abf5 100644
--- a/Master/texmf-dist/source/latex/l3kernel/l3fp-assign.dtx
+++ b/Master/texmf-dist/source/latex/l3kernel/l3fp-assign.dtx
@@ -36,7 +36,7 @@
%
%<*driver>
\RequirePackage{l3bootstrap}
-\GetIdInfo$Id: l3fp-assign.dtx 4129 2012-08-20 20:38:28Z mittelba $
+\GetIdInfo$Id: l3fp-assign.dtx 4212 2012-09-09 12:24:04Z bruno $
{L3 Floating-point assignments}
\documentclass[full]{l3doc}
\begin{document}
@@ -183,20 +183,20 @@
%
% \begin{macro}{\fp_show:N, \fp_show:c, \fp_show:n}
% This shows the result of computing its argument. The
-% \cs{__msg_show_variable:x} auxiliary expects its input in a slightly odd
-% form, starting with |>|, and displays the rest.
+% \cs{__msg_show_variable:n} auxiliary expects its input in a slightly
+% odd form, starting with |>~|, and displays the rest.
% \begin{macrocode}
\cs_new_protected:Npn \fp_show:N #1
{
\fp_if_exist:NTF #1
- { \__msg_show_variable:x { > \fp_to_tl:N #1 } }
+ { \__msg_show_variable:n { > ~ \fp_to_tl:N #1 } }
{
\__msg_kernel_error:nnx { kernel } { variable-not-defined }
{ \token_to_str:N #1 }
}
}
\cs_new_protected:Npn \fp_show:n #1
- { \__msg_show_variable:x { > \fp_to_tl:n {#1} } }
+ { \__msg_show_variable:n { > ~ \fp_to_tl:n {#1} } }
\cs_generate_variant:Nn \fp_show:N { c }
% \end{macrocode}
% \end{macro}