diff options
author | Karl Berry <karl@freefriends.org> | 2020-05-07 21:25:38 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-05-07 21:25:38 +0000 |
commit | 1a52ee4251e2b2e1f1669a14319a600e0c5f24c9 (patch) | |
tree | edb2542521503451c1112f49cd19dd9ee7e666ac /Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx | |
parent | 713c3f96e876bca9b0516ae3d5fd5bd35f24d074 (diff) |
l3 (7may20)
git-svn-id: svn://tug.org/texlive/trunk@55057 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx')
-rw-r--r-- | Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx b/Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx index e69b63ba050..8c5a03bd24f 100644 --- a/Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx +++ b/Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx @@ -40,7 +40,7 @@ % {latex-team@latex-project.org}^^A % }^^A % } -% \date{Released 2020-04-06} +% \date{Released 2020-05-05} % % \maketitle % @@ -1647,8 +1647,8 @@ % This function should be called within an \cs{int_value:w} % expansion (or within an integer expression). It leaves digits of the % exponent behind it in the input stream, and terminates the expansion -% with a semicolon. If there is no~|e|, leave an exponent of~$0$. If -% there is an~|e|, expand the next token to run some tests on it. The +% with a semicolon. If there is no~|e| (or~|E|), leave an exponent of~$0$. If +% there is an~|e| or~|E|, expand the next token to run some tests on it. The % first rough test is that if the character code of~|#1| is greater % than that of~|9| (largest code valid for an exponent, less than any % code valid for an identifier), there was in fact no exponent; @@ -1656,7 +1656,7 @@ % \begin{macrocode} \cs_new:Npn \@@_parse_exponent:N #1 { - \if:w e \exp_not:N #1 + \if:w e \if:w E \exp_not:N #1 e \else: \exp_not:N #1 \fi: \exp_after:wN \@@_parse_exponent_aux:N \exp:w \else: |