aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-07-04 18:41:53 +0000
committerRichard M. Stallman <[email protected]>1997-07-04 18:41:53 +0000
commit247422ce738d2b82665541a4f10124222f38e051 (patch)
tree4465b0e06648de38ab0717f65fa79670bfe3a5ec
parent7c801356cfd18dfa6e247ab45328e29343460257 (diff)
(Fformat): Add second argument in call to Ftruncate.
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 2a7694c324..7e663cccb2 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. */