]> git.eshelyaron.com Git - emacs.git/commitdiff
(generate-file-autoloads): Set float-output-format to
authorRichard M. Stallman <rms@gnu.org>
Wed, 11 Aug 1993 06:38:38 +0000 (06:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 11 Aug 1993 06:38:38 +0000 (06:38 +0000)
nil, not "%.20e", since nil is guaranteed to not lose info on output.

lisp/emacs-lisp/autoload.el

index 7e6be4c6c99f09d3cab7b37b32e15a3d0a15b9ba..c22ca66ead4641fcd2bc3ad4c41cc5560f7be306 100644 (file)
@@ -109,7 +109,7 @@ are used."
                         (substring name 0 (match-beginning 0))
                       name)))
        (print-length nil)
-       (float-output-format "%.20e")
+       (float-output-format nil)
        (done-any nil)
        (visited (get-file-buffer file))
        output-end)