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 | aa7ea8bd6e695ec6ea47f9c47b0d86190874a1dc (patch) | |
tree | d12de6068af416a1dfed6a08f4345fd46a5eb1d0 /lisp/emacs-lisp/autoload.el | |
parent | 2a5fa27beb0bd95868c2ebdb7dd7eeac79f745b1 (diff) | |
download | emacs-aa7ea8bd6e695ec6ea47f9c47b0d86190874a1dc.tar.gz emacs-aa7ea8bd6e695ec6ea47f9c47b0d86190874a1dc.tar.bz2 emacs-aa7ea8bd6e695ec6ea47f9c47b0d86190874a1dc.zip |
(generate-file-autoloads): Set float-output-format to
nil, not "%.20e", since nil is guaranteed to not lose info on output.
Diffstat (limited to 'lisp/emacs-lisp/autoload.el')
-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) |