]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fformat): Add second argument in call to Ftruncate.
authorRichard M. Stallman <rms@gnu.org>
Fri, 4 Jul 1997 18:41:53 +0000 (18:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 4 Jul 1997 18:41:53 +0000 (18:41 +0000)
src/editfns.c

index 2a7694c324782d9f30fd0a02e5f7df74551aead2..7e663cccb276359e33348605d6a98da2f32359e6 100644 (file)
@@ -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.  */