aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-07-20 22:51:01 +0000
committerRichard M. Stallman1995-07-20 22:51:01 +0000
commit9db1775aa6b915a8c2c77e605f3b9a8683bc035f (patch)
tree3b0d2a3347cf8326be4c25cd98e1f1bccc453e65 /src
parentc8e76b4733827056fdd050eefc9d2346083181ca (diff)
downloademacs-9db1775aa6b915a8c2c77e605f3b9a8683bc035f.tar.gz
emacs-9db1775aa6b915a8c2c77e605f3b9a8683bc035f.zip
(Fformat): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index ba9e922eb6e..365d534c050 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1767,9 +1767,13 @@ The other arguments are substituted into it to make the result, a string.\n\
1767It may contain %-sequences meaning to substitute the next argument.\n\ 1767It may contain %-sequences meaning to substitute the next argument.\n\
1768%s means print a string argument. Actually, prints any object, with `princ'.\n\ 1768%s means print a string argument. Actually, prints any object, with `princ'.\n\
1769%d means print as number in decimal (%o octal, %x hex).\n\ 1769%d means print as number in decimal (%o octal, %x hex).\n\
1770%e means print a number in exponential notation.\n\
1771%f means print a number in decimal-point notation.\n\
1772%g means print a number in exponential notation\n\
1773 or decimal-point notation, whichever uses fewer characters.\n\
1770%c means print a number as a single character.\n\ 1774%c means print a number as a single character.\n\
1771%S means print any object as an s-expression (using prin1).\n\ 1775%S means print any object as an s-expression (using prin1).\n\
1772 The argument used for %d, %o, %x or %c must be a number.\n\ 1776 The argument used for %d, %o, %x, %e, %f, %g or %c must be a number.\n\
1773Use %% to put a single % into the output.") 1777Use %% to put a single % into the output.")
1774 (nargs, args) 1778 (nargs, args)
1775 int nargs; 1779 int nargs;