diff options
| -rw-r--r-- | lispref/strings.texi | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lispref/strings.texi b/lispref/strings.texi index ac305225fc0..970497871ea 100644 --- a/lispref/strings.texi +++ b/lispref/strings.texi | |||
| @@ -672,20 +672,17 @@ integer. @samp{%x} uses lower case and @samp{%X} uses upper case. | |||
| 672 | Replace the specification with the character which is the value given. | 672 | Replace the specification with the character which is the value given. |
| 673 | 673 | ||
| 674 | @item %e | 674 | @item %e |
| 675 | @itemx %E | ||
| 676 | Replace the specification with the exponential notation for a floating | 675 | Replace the specification with the exponential notation for a floating |
| 677 | point number. @samp{%e} uses lower case @samp{e} for the exponent and | 676 | point number. |
| 678 | @samp{%E} uses upper case. | ||
| 679 | 677 | ||
| 680 | @item %f | 678 | @item %f |
| 681 | Replace the specification with the decimal-point notation for a floating | 679 | Replace the specification with the decimal-point notation for a floating |
| 682 | point number. | 680 | point number. |
| 683 | 681 | ||
| 684 | @item %g | 682 | @item %g |
| 685 | @itemx %G | ||
| 686 | Replace the specification with notation for a floating point number, | 683 | Replace the specification with notation for a floating point number, |
| 687 | using either exponential notation or decimal-point notation, whichever | 684 | using either exponential notation or decimal-point notation, whichever |
| 688 | is shorter. @samp{%G} uses upper case if an exponent is printed. | 685 | is shorter. |
| 689 | 686 | ||
| 690 | @item %% | 687 | @item %% |
| 691 | Replace the specification with a single @samp{%}. This format | 688 | Replace the specification with a single @samp{%}. This format |