aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2016-09-16 12:55:15 +0300
committerEli Zaretskii2016-09-16 12:55:15 +0300
commit7123896626b06c26c4e37839ab41e41980c8f433 (patch)
tree1e4fe643b4d0e8b6ecd799bfb987b6e5451ae578 /src
parent3462fe73351f3da5bc3ebf8296ee44dd2e6b1dbc (diff)
downloademacs-7123896626b06c26c4e37839ab41e41980c8f433.tar.gz
emacs-7123896626b06c26c4e37839ab41e41980c8f433.zip
Improve the doc string of 'format'
* src/editfns.c (Fformat): Fix ambiguity in the doc string's usage of a literal period. (Bug#24407)
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 20cb3a80c7b..835e432ae3d 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3867,7 +3867,8 @@ specifiers, as follows:
3867 3867
3868 %<flags><width><precision>character 3868 %<flags><width><precision>character
3869 3869
3870where flags is [+ #-0]+, width is [0-9]+, and precision is .[0-9]+ 3870where flags is [+ #-0]+, width is [0-9]+, and precision is a literal
3871period "." followed by [0-9]+
3871 3872
3872The + flag character inserts a + before any positive number, while a 3873The + flag character inserts a + before any positive number, while a
3873space inserts a space before any positive number; these flags only 3874space inserts a space before any positive number; these flags only