aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorGlenn Morris2020-05-28 07:50:25 -0700
committerGlenn Morris2020-05-28 07:50:25 -0700
commitdc78327e32fb7496dca10e17189a4d1b7d4923f4 (patch)
tree63393826171effba54be37839174005650519fe6 /doc/lispref
parentae348f328643e55ea2d2e8fd42ff034d08855cae (diff)
parente7a3ed8a6dddb6e16c83d27a04dfa6ec8160e580 (diff)
downloademacs-dc78327e32fb7496dca10e17189a4d1b7d4923f4.tar.gz
emacs-dc78327e32fb7496dca10e17189a4d1b7d4923f4.zip
Merge from origin/emacs-27
e7a3ed8a6d Fix tab-bar-tab-name-ellipsis initialization 4737d0af75 Fix Elisp manual entry for format-spec 0195809bb6 Fix rare assertion violations in 'etags' cddb0079ff ; * lisp/format-spec.el (format-spec): Fix typo.
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/text.texi11
1 files changed, 4 insertions, 7 deletions
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi
index 9317362a70a..70fb7141a1f 100644
--- a/doc/lispref/text.texi
+++ b/doc/lispref/text.texi
@@ -4698,10 +4698,7 @@ following modifiers can be used:
4698 4698
4699@table @asis 4699@table @asis
4700@item @samp{0} 4700@item @samp{0}
4701Use zero padding. 4701Pad with zeros instead of the default spaces.
4702
4703@item @samp{@ }
4704User space padding.
4705 4702
4706@item @samp{-} 4703@item @samp{-}
4707Pad to the right. 4704Pad to the right.
@@ -4713,7 +4710,7 @@ Use upper case.
4713Use lower case. 4710Use lower case.
4714 4711
4715@item @samp{<} 4712@item @samp{<}
4716If the length needs to limited, remove characters from the left. 4713If the length needs to be limited, remove characters from the left.
4717 4714
4718@item @samp{>} 4715@item @samp{>}
4719Same as previous, but remove characters from the right. 4716Same as previous, but remove characters from the right.
@@ -4723,9 +4720,9 @@ If contradictory modifiers are used (for instance, both upper and
4723lower case), then what happens is undefined. 4720lower case), then what happens is undefined.
4724 4721
4725As an example, @samp{"%<010b"} means ``insert the @samp{b} expansion, 4722As an example, @samp{"%<010b"} means ``insert the @samp{b} expansion,
4726but pad with leading zeroes if it's less than ten characters, and if 4723but pad with leading zeros if it's less than ten characters, and if
4727it's more than ten characters, shorten by removing characters from the 4724it's more than ten characters, shorten by removing characters from the
4728left''. 4725left.''
4729 4726
4730 4727
4731@node Checksum/Hash 4728@node Checksum/Hash