From 247422ce738d2b82665541a4f10124222f38e051 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 4 Jul 1997 18:41:53 +0000 Subject: [PATCH] (Fformat): Add second argument in call to Ftruncate. --- src/editfns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.39.5