aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2017-06-03 01:31:04 -0700
committerPaul Eggert2017-06-03 01:31:52 -0700
commit0147cdd4d96f1eaeef720ee0b89bddd27eaf4233 (patch)
tree30e3d37cad364e793b4a34d9c64d08f3244ad1fe /src
parent73635edb43e0e4a31cfe8af41ccb07c32836b148 (diff)
downloademacs-0147cdd4d96f1eaeef720ee0b89bddd27eaf4233.tar.gz
emacs-0147cdd4d96f1eaeef720ee0b89bddd27eaf4233.zip
Document uniqueness limitation of ‘format’
* doc/lispref/strings.texi (Formatting Strings): * src/editfns.c (Fformat): Document that field numbers should be unique within a format.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 29af25aab4f..a5088b0a1fd 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3901,9 +3901,10 @@ where field is [0-9]+ followed by a literal dollar "$", flags is
3901followed by [0-9]+. 3901followed by [0-9]+.
3902 3902
3903If a %-sequence is numbered with a field with positive value N, the 3903If a %-sequence is numbered with a field with positive value N, the
3904Nth argument is substituted instead of the next one. A format can 3904Nth argument is substituted instead of the next one. A field number
3905contain either numbered or unnumbered %-sequences but not both, except 3905should differ from the other field numbers in the same format. A
3906that %% can be mixed with numbered %-sequences. 3906format can contain either numbered or unnumbered %-sequences but not
3907both, except that %% can be mixed with numbered %-sequences.
3907 3908
3908The + flag character inserts a + before any positive number, while a 3909The + flag character inserts a + before any positive number, while a
3909space inserts a space before any positive number; these flags only 3910space inserts a space before any positive number; these flags only