diff options
| author | Eli Zaretskii | 2019-03-09 20:58:56 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2019-03-09 20:58:56 +0200 |
| commit | 5625eb7c245b8cfc5a8631316c11fe56453ce874 (patch) | |
| tree | dbb5a289be866f6ac62cafd99f9d5c1a2f8d4265 /src | |
| parent | a4fa053f0e65bec2c5aa1e10a758cb4cc012921f (diff) | |
| download | emacs-5625eb7c245b8cfc5a8631316c11fe56453ce874.tar.gz emacs-5625eb7c245b8cfc5a8631316c11fe56453ce874.zip | |
; * src/editfns.c (Fformat): Fix last change. (Bug#34792)
Diffstat (limited to 'src')
| -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 af39d358bd9..f5a9e0a6408 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2989,10 +2989,8 @@ the next available argument, or the argument explicitly specified: | |||
| 2989 | 2989 | ||
| 2990 | %s means print a string argument. Actually, prints any object, with `princ'. | 2990 | %s means print a string argument. Actually, prints any object, with `princ'. |
| 2991 | %d means print as signed number in decimal. | 2991 | %d means print as signed number in decimal. |
| 2992 | %o means print a number in octal. The value of `binary-as-unsigned' | 2992 | %o means print a number in octal. |
| 2993 | determines whether it's printed as signed or unsigned. | 2993 | %x means print a number in hex. |
| 2994 | %x means print a number in hex. The value of `binary-as-unsigned' | ||
| 2995 | determines whether it's printed as signed or unsigned. | ||
| 2996 | %X is like %x, but uses upper case. | 2994 | %X is like %x, but uses upper case. |
| 2997 | %e means print a number in exponential notation. | 2995 | %e means print a number in exponential notation. |
| 2998 | %f means print a number in decimal-point notation. | 2996 | %f means print a number in decimal-point notation. |
| @@ -3003,6 +3001,8 @@ the next available argument, or the argument explicitly specified: | |||
| 3003 | %S means print any object as an s-expression (using `prin1'). | 3001 | %S means print any object as an s-expression (using `prin1'). |
| 3004 | 3002 | ||
| 3005 | The argument used for %d, %o, %x, %e, %f, %g or %c must be a number. | 3003 | The argument used for %d, %o, %x, %e, %f, %g or %c must be a number. |
| 3004 | The value of `binary-as-unsigned' determines whether it's printed as | ||
| 3005 | signed or unsigned by %o, %x, and %X. | ||
| 3006 | Use %% to put a single % into the output. | 3006 | Use %% to put a single % into the output. |
| 3007 | 3007 | ||
| 3008 | A %-sequence other than %% may contain optional field number, flag, | 3008 | A %-sequence other than %% may contain optional field number, flag, |