# HG changeset patch # User Richard M. Stallman # Date 868041713 0 # Node ID 0567c4086813301d95322465fe132fb025edd0d1 # Parent 9f1bc5e1e4a8268ff0505d63019f4481db0927c1 (Fformat): Add second argument in call to Ftruncate. diff -r 9f1bc5e1e4a8 -r 0567c4086813 src/editfns.c --- a/src/editfns.c Fri Jul 04 18:38:36 1997 +0000 +++ b/src/editfns.c Fri Jul 04 18:41:53 1997 +0000 @@ -2224,7 +2224,7 @@ else if (FLOATP (args[n]) && *format != 's') { if (! (*format == 'e' || *format == 'f' || *format == 'g')) - args[n] = Ftruncate (args[n]); + args[n] = Ftruncate (args[n], Qnil); total += 30; /* We have to put an arbitrary limit on minlen since otherwise it could make alloca fail. */