summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-04 18:41:53 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-04 18:41:53 +0000
commit6466814187b8f3bb0e4fd45e1353c712755e9532 (patch)
tree96c1c2ad6bf96288d838bdc4756ae84a680a45d0
parenta785eb55f9e8a01e80f142eb48f1be579658cebd (diff)
downloademacs-6466814187b8f3bb0e4fd45e1353c712755e9532.tar.gz
(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 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. */