# HG changeset patch # User Richard M. Stallman # Date 806280661 0 # Node ID 903fb74f5b366972d9381bec460246eaf0d52040 # Parent 205232bb7efe10c92b311f276ee3c2482e0372ab (Fformat): Doc fix. diff -r 205232bb7efe -r 903fb74f5b36 src/editfns.c --- a/src/editfns.c Thu Jul 20 20:47:40 1995 +0000 +++ b/src/editfns.c Thu Jul 20 22:51:01 1995 +0000 @@ -1767,9 +1767,13 @@ 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;