aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c6
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.