From b413f89564f18ef411c8fe8f4ec157e41c29c01d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 26 Oct 1998 23:48:57 +0000 Subject: [PATCH] (Fformat): Increase buffer size for floating format. --- src/editfns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2