From: Richard M. Stallman Date: Mon, 26 Oct 1998 23:48:57 +0000 (+0000) Subject: (Fformat): Increase buffer size for floating format. X-Git-Tag: emacs-20.4~1396 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b413f89564f18ef411c8fe8f4ec157e41c29c01d;p=emacs.git (Fformat): Increase buffer size for floating format. --- diff --git a/src/editfns.c b/src/editfns.c index 1f855e8480e..a0c09ebf095 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -2576,7 +2576,7 @@ Use %% to put a single % into the output.") { if (! (*format == 'e' || *format == 'f' || *format == 'g')) args[n] = Ftruncate (args[n], Qnil); - thissize = 60; + thissize = 200; } #endif else