* bytecomp.el (byte-compile-from-buffer): Bind float-output-format
to "%.20e", not "%20e"; the latter is always ignored, since it doesn't have a decimal point after the percent sign.
This commit is contained in:
parent
8a30241de3
commit
42106ea549
1 changed files with 1 additions and 1 deletions
|
@ -1244,7 +1244,7 @@ With argument, insert value in current buffer after the form."
|
|||
;; buffer --> output-buffer, or buffer --> eval form, return nil
|
||||
(let (outbuffer)
|
||||
(let (;; Prevent truncation of flonums and lists as we read and print them
|
||||
(float-output-format "%20e")
|
||||
(float-output-format "%.20e")
|
||||
(case-fold-search nil)
|
||||
(print-length nil)
|
||||
;; Simulate entry to byte-compile-top-level
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue