aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorRichard M. Stallman1998-10-26 23:48:57 +0000
committerRichard M. Stallman1998-10-26 23:48:57 +0000
commitb413f89564f18ef411c8fe8f4ec157e41c29c01d (patch)
tree262a95012636673a220750d25b7ff134dbe9f24c /src/editfns.c
parent4a7cd65c8be1779beb0d10414a4cc75b2e215cb6 (diff)
downloademacs-b413f89564f18ef411c8fe8f4ec157e41c29c01d.tar.gz
emacs-b413f89564f18ef411c8fe8f4ec157e41c29c01d.zip
(Fformat): Increase buffer size for floating format.
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
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.")
2576 { 2576 {
2577 if (! (*format == 'e' || *format == 'f' || *format == 'g')) 2577 if (! (*format == 'e' || *format == 'f' || *format == 'g'))
2578 args[n] = Ftruncate (args[n], Qnil); 2578 args[n] = Ftruncate (args[n], Qnil);
2579 thissize = 60; 2579 thissize = 200;
2580 } 2580 }
2581#endif 2581#endif
2582 else 2582 else