diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-08-11 06:38:38 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-08-11 06:38:38 +0000 |
commit | c70b10f66289a2daf7d60f543351ec5c1e572c65 (patch) | |
tree | 8ee9fc15271530e2b86b5e15596997f0bce25d24 | |
parent | be49c47eed8b48eec7efe954afdddbc174e789c3 (diff) | |
download | emacs-c70b10f66289a2daf7d60f543351ec5c1e572c65.tar.gz |
(generate-file-autoloads): Set float-output-format to
nil, not "%.20e", since nil is guaranteed to not lose info on output.
-rw-r--r-- | lisp/emacs-lisp/autoload.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |