diff options
| author | Ivan Andrus | 2019-03-09 11:03:05 -0700 |
|---|---|---|
| committer | Ivan Andrus | 2019-03-09 11:35:05 -0700 |
| commit | a4fa053f0e65bec2c5aa1e10a758cb4cc012921f (patch) | |
| tree | 9a7c43ddcd8284ebe62a9f42b70215d7cb8afc6c | |
| parent | 3b63afd73b541ea559aa58edc1901c8b30e2af40 (diff) | |
| download | emacs-a4fa053f0e65bec2c5aa1e10a758cb4cc012921f.tar.gz emacs-a4fa053f0e65bec2c5aa1e10a758cb4cc012921f.zip | |
Mention `binary-as-unsigned' in `format' docstring (Bug#34792)
* src/src/editfns.c (format): Update docstring to mention binary-as-unsigned
(Bug#34792)
| -rw-r--r-- | src/editfns.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index bffb5db43ef..af39d358bd9 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2989,8 +2989,10 @@ 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 as unsigned number in octal. | 2992 | %o means print a number in octal. The value of `binary-as-unsigned' |
| 2993 | %x means print as unsigned number in hex. | 2993 | determines whether it's printed as signed or unsigned. |
| 2994 | %x means print a number in hex. The value of `binary-as-unsigned' | ||
| 2995 | determines whether it's printed as signed or unsigned. | ||
| 2994 | %X is like %x, but uses upper case. | 2996 | %X is like %x, but uses upper case. |
| 2995 | %e means print a number in exponential notation. | 2997 | %e means print a number in exponential notation. |
| 2996 | %f means print a number in decimal-point notation. | 2998 | %f means print a number in decimal-point notation. |