diff options
| author | Richard M. Stallman | 1998-10-26 23:48:57 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-10-26 23:48:57 +0000 |
| commit | b413f89564f18ef411c8fe8f4ec157e41c29c01d (patch) | |
| tree | 262a95012636673a220750d25b7ff134dbe9f24c /src/editfns.c | |
| parent | 4a7cd65c8be1779beb0d10414a4cc75b2e215cb6 (diff) | |
| download | emacs-b413f89564f18ef411c8fe8f4ec157e41c29c01d.tar.gz emacs-b413f89564f18ef411c8fe8f4ec157e41c29c01d.zip | |
(Fformat): Increase buffer size for floating format.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 2 |
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 |