emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 5625eb7: ; * src/editfns.c (Fformat): Fix last chan


From: Eli Zaretskii
Subject: [Emacs-diffs] master 5625eb7: ; * src/editfns.c (Fformat): Fix last change. (Bug#34792)
Date: Sat, 9 Mar 2019 13:59:47 -0500 (EST)

branch: master
commit 5625eb7c245b8cfc5a8631316c11fe56453ce874
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    ; * src/editfns.c (Fformat): Fix last change.  (Bug#34792)
---
 src/editfns.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/editfns.c b/src/editfns.c
index af39d35..f5a9e0a 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -2989,10 +2989,8 @@ 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 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.
+%o means print a number in octal.
+%x means print a number in hex.
 %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.
@@ -3003,6 +3001,8 @@ the next available argument, or the argument explicitly 
specified:
 %S means print any object as an s-expression (using `prin1').
 
 The argument used for %d, %o, %x, %e, %f, %g or %c must be a number.
+The value of `binary-as-unsigned' determines whether it's printed as
+   signed or unsigned by %o, %x, and %X.
 Use %% to put a single % into the output.
 
 A %-sequence other than %% may contain optional field number, flag,



reply via email to

[Prev in Thread] Current Thread [Next in Thread]