From: Richard M. Stallman Date: Wed, 11 Aug 1993 06:38:38 +0000 (+0000) Subject: (generate-file-autoloads): Set float-output-format to X-Git-Tag: emacs-19.34~11296 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aa7ea8bd6e695ec6ea47f9c47b0d86190874a1dc;p=emacs.git (generate-file-autoloads): Set float-output-format to nil, not "%.20e", since nil is guaranteed to not lose info on output. --- diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 7e6be4c6c99..c22ca66ead4 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -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)