From b0787891e72dd0bf94863e5ca196578c124739f7 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 11 Aug 1993 06:39:21 +0000 Subject: [PATCH] (byte-compile-from-buffer): Set float-output-format to nil, not "%.20e", since nil is guaranteed to not lose info on output. --- lisp/emacs-lisp/bytecomp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 19efb5db085..d2b9659a708 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1249,7 +1249,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 nil) (case-fold-search nil) (print-length nil) ;; Simulate entry to byte-compile-top-level -- 2.39.5