diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-07-23 00:05:25 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-07-23 00:07:02 -0700 |
commit | 109cb1520c690038d387aa290bb03261f7c5a1f6 (patch) | |
tree | 75fd79ee186e33c4df6a54036f20287c63849f9a /src/editfns.c | |
parent | 216b9b2dbff4cd6843d988c1e2df81b1e02a52fd (diff) | |
download | emacs-109cb1520c690038d387aa290bb03261f7c5a1f6.tar.gz emacs-109cb1520c690038d387aa290bb03261f7c5a1f6.tar.bz2 emacs-109cb1520c690038d387aa290bb03261f7c5a1f6.zip |
positive → nonnegative doc fixes
* doc/lispref/numbers.texi (Bitwise Operations)
(Math Functions):
* doc/lispref/strings.texi (Formatting Strings):
* src/editfns.c (Fformat):
Correct “positive” with “nonnegative” in some documentation.
Diffstat (limited to 'src/editfns.c')
-rw-r--r-- | src/editfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index 4dbf4805721..ccc0d27b139 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -4195,8 +4195,8 @@ Nth argument is substituted instead of the next one. A format can contain either numbered or unnumbered %-sequences but not both, except that %% can be mixed with numbered %-sequences. -The + flag character inserts a + before any positive number, while a -space inserts a space before any positive number; these flags only +The + flag character inserts a + before any nonnegative number, while a +space inserts a space before any nonnegative number; these flags only affect %d, %e, %f, and %g sequences, and the + flag takes precedence. The - and 0 flags affect the width specifier, as described below. |