summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorgriffin <brian_griffin@mentor.com>2017-06-12 14:04:29 (GMT)
committergriffin <brian_griffin@mentor.com>2017-06-12 14:04:29 (GMT)
commit78e17f7f0cce0233cc1009b3f7c3aa2ea32763d7 (patch)
tree2a4e1d63e9c5c5feedcb6f21d5a637f95403b93b /doc
parent7ad256b22a418232031230af7c60a0e21e979df6 (diff)
downloadtcl-78e17f7f0cce0233cc1009b3f7c3aa2ea32763d7.zip
tcl-78e17f7f0cce0233cc1009b3f7c3aa2ea32763d7.tar.gz
tcl-78e17f7f0cce0233cc1009b3f7c3aa2ea32763d7.tar.bz2
Add support of 0d in the format %# conversion flag. Add tests for same.
Diffstat (limited to 'doc')
-rw-r--r--doc/format.n16
1 files changed, 9 insertions, 7 deletions
diff --git a/doc/format.n b/doc/format.n
index ba044f2..a386464 100644
--- a/doc/format.n
+++ b/doc/format.n
@@ -83,14 +83,16 @@ Specifies that the number should be padded on the left with
zeroes instead of spaces.
.TP 10
\fB#\fR
-Requests an alternate output form. For \fBo\fR and \fBO\fR
-conversions it guarantees that the first digit is always \fB0\fR.
-For \fBx\fR or \fBX\fR conversions, \fB0x\fR or \fB0X\fR (respectively)
-will be added to the beginning of the result unless it is zero.
+Requests an alternate output form. For \fBo\fR and \fBO\fR
+conversions it guarantees that the first digit is always \fB0\fR.
+For \fBx\fR or \fBX\fR conversions, \fB0x\fR or \fB0X\fR (respectively)
+will be added to the beginning of the result unless it is zero.
For \fBb\fR conversions, \fB0b\fR
-will be added to the beginning of the result unless it is zero.
-For all floating-point conversions (\fBe\fR, \fBE\fR, \fBf\fR,
-\fBg\fR, and \fBG\fR) it guarantees that the result always
+will be added to the beginning of the result unless it is zero.
+For \fBd\fR conversions, \fB0d\fR will be added to the beginning
+of the result unless it is zero.
+For all floating-point conversions (\fBe\fR, \fBE\fR, \fBf\fR,
+\fBg\fR, and \fBG\fR) it guarantees that the result always
has a decimal point.
For \fBg\fR and \fBG\fR conversions it specifies that
trailing zeroes should not be removed.