diff options
| author | Paul Eggert | 2018-07-23 00:05:25 -0700 |
|---|---|---|
| committer | Paul Eggert | 2018-07-23 00:07:02 -0700 |
| commit | 109cb1520c690038d387aa290bb03261f7c5a1f6 (patch) | |
| tree | 75fd79ee186e33c4df6a54036f20287c63849f9a /src | |
| parent | 216b9b2dbff4cd6843d988c1e2df81b1e02a52fd (diff) | |
| download | emacs-109cb1520c690038d387aa290bb03261f7c5a1f6.tar.gz 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')
| -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 | |||
| 4195 | contain either numbered or unnumbered %-sequences but not both, except | 4195 | contain either numbered or unnumbered %-sequences but not both, except |
| 4196 | that %% can be mixed with numbered %-sequences. | 4196 | that %% can be mixed with numbered %-sequences. |
| 4197 | 4197 | ||
| 4198 | The + flag character inserts a + before any positive number, while a | 4198 | The + flag character inserts a + before any nonnegative number, while a |
| 4199 | space inserts a space before any positive number; these flags only | 4199 | space inserts a space before any nonnegative number; these flags only |
| 4200 | affect %d, %e, %f, and %g sequences, and the + flag takes precedence. | 4200 | affect %d, %e, %f, and %g sequences, and the + flag takes precedence. |
| 4201 | The - and 0 flags affect the width specifier, as described below. | 4201 | The - and 0 flags affect the width specifier, as described below. |
| 4202 | 4202 | ||