]> git.eshelyaron.com Git - emacs.git/commitdiff
Mention `binary-as-unsigned' in `format' docstring (Bug#34792)
authorIvan Andrus <darthandrus@gmail.com>
Sat, 9 Mar 2019 18:03:05 +0000 (11:03 -0700)
committerIvan Andrus <darthandrus@gmail.com>
Sat, 9 Mar 2019 18:35:05 +0000 (11:35 -0700)
* src/src/editfns.c (format): Update docstring to mention binary-as-unsigned
(Bug#34792)

src/editfns.c

index bffb5db43eff96fb212f3067b69314c14d935c0b..af39d358bd9223efed03ebe8abfc24ffdbada0e6 100644 (file)
@@ -2989,8 +2989,10 @@ the next available argument, or the argument explicitly specified:
 
 %s means print a string argument.  Actually, prints any object, with `princ'.
 %d means print as signed number in decimal.
-%o means print as unsigned number in octal.
-%x means print as unsigned number in hex.
+%o means print a number in octal.  The value of `binary-as-unsigned'
+   determines whether it's printed as signed or unsigned.
+%x means print a number in hex.  The value of `binary-as-unsigned'
+   determines whether it's printed as signed or unsigned.
 %X is like %x, but uses upper case.
 %e means print a number in exponential notation.
 %f means print a number in decimal-point notation.