diff options
| author | Miles Bader | 2007-02-26 23:03:45 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-02-26 23:03:45 +0000 |
| commit | a73d7753f965734247be482efa125da5235996da (patch) | |
| tree | 56af26fb1a12a2c93c146aac923947968c4c9d76 /src/editfns.c | |
| parent | 55a5664de23c07003d4d2584fc065619609500b6 (diff) | |
| parent | f6f3d0b9133d06b29523c7bc744130cddc5c8d6b (diff) | |
| download | emacs-a73d7753f965734247be482efa125da5235996da.tar.gz emacs-a73d7753f965734247be482efa125da5235996da.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 638-652)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 202)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-177
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/editfns.c b/src/editfns.c index 3e27ca0cf43..70cfac36fb1 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -3528,7 +3528,7 @@ Use %% to put a single % into the output. | |||
| 3528 | 3528 | ||
| 3529 | The basic structure of a %-sequence is | 3529 | The basic structure of a %-sequence is |
| 3530 | % <flags> <width> <precision> character | 3530 | % <flags> <width> <precision> character |
| 3531 | where flags is [- #0]+, width is [0-9]+, and precision is .[0-9]+ | 3531 | where flags is [-+ #0]+, width is [0-9]+, and precision is .[0-9]+ |
| 3532 | 3532 | ||
| 3533 | usage: (format STRING &rest OBJECTS) */) | 3533 | usage: (format STRING &rest OBJECTS) */) |
| 3534 | (nargs, args) | 3534 | (nargs, args) |
| @@ -3641,7 +3641,7 @@ usage: (format STRING &rest OBJECTS) */) | |||
| 3641 | 3641 | ||
| 3642 | where | 3642 | where |
| 3643 | 3643 | ||
| 3644 | flags ::= [- #0]+ | 3644 | flags ::= [-+ #0]+ |
| 3645 | field-width ::= [0-9]+ | 3645 | field-width ::= [0-9]+ |
| 3646 | precision ::= '.' [0-9]* | 3646 | precision ::= '.' [0-9]* |
| 3647 | 3647 | ||
| @@ -3655,7 +3655,7 @@ usage: (format STRING &rest OBJECTS) */) | |||
| 3655 | 3655 | ||
| 3656 | while (format != end | 3656 | while (format != end |
| 3657 | && (*format == '-' || *format == '0' || *format == '#' | 3657 | && (*format == '-' || *format == '0' || *format == '#' |
| 3658 | || * format == ' ')) | 3658 | || * format == ' ' || *format == '+')) |
| 3659 | ++format; | 3659 | ++format; |
| 3660 | 3660 | ||
| 3661 | if (*format >= '0' && *format <= '9') | 3661 | if (*format >= '0' && *format <= '9') |
| @@ -3832,7 +3832,7 @@ usage: (format STRING &rest OBJECTS) */) | |||
| 3832 | discarded[format - format_start] = 1; | 3832 | discarded[format - format_start] = 1; |
| 3833 | format++; | 3833 | format++; |
| 3834 | 3834 | ||
| 3835 | while (index("-0# ", *format)) | 3835 | while (index("-+0# ", *format)) |
| 3836 | { | 3836 | { |
| 3837 | if (*format == '-') | 3837 | if (*format == '-') |
| 3838 | { | 3838 | { |