From: Richard M. Stallman Date: Fri, 4 Jul 1997 18:41:53 +0000 (+0000) Subject: (Fformat): Add second argument in call to Ftruncate. X-Git-Tag: emacs-20.1~1341 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=247422ce738d2b82665541a4f10124222f38e051;p=emacs.git (Fformat): Add second argument in call to Ftruncate. --- diff --git a/src/editfns.c b/src/editfns.c index 2a7694c3247..7e663cccb27 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -2224,7 +2224,7 @@ Use %% to put a single % into the output.") 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. */