From 9db1775aa6b915a8c2c77e605f3b9a8683bc035f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 20 Jul 1995 22:51:01 +0000 Subject: [PATCH] (Fformat): Doc fix. --- src/editfns.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/editfns.c b/src/editfns.c index ba9e922eb6..365d534c05 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\ It may contain %-sequences meaning to substitute the next argument.\n\ %s means print a string argument. Actually, prints any object, with `princ'.\n\ %d means print as number in decimal (%o octal, %x hex).\n\ +%e means print a number in exponential notation.\n\ +%f means print a number in decimal-point notation.\n\ +%g means print a number in exponential notation\n\ + or decimal-point notation, whichever uses fewer characters.\n\ %c means print a number as a single character.\n\ %S means print any object as an s-expression (using prin1).\n\ - The argument used for %d, %o, %x or %c must be a number.\n\ + The argument used for %d, %o, %x, %e, %f, %g or %c must be a number.\n\ Use %% to put a single % into the output.") (nargs, args) int nargs; -- 2.20.1