diff options
| author | Richard M. Stallman | 1993-08-11 06:38:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-08-11 06:38:38 +0000 |
| commit | aa7ea8bd6e695ec6ea47f9c47b0d86190874a1dc (patch) | |
| tree | d12de6068af416a1dfed6a08f4345fd46a5eb1d0 | |
| parent | 2a5fa27beb0bd95868c2ebdb7dd7eeac79f745b1 (diff) | |
| download | emacs-aa7ea8bd6e695ec6ea47f9c47b0d86190874a1dc.tar.gz emacs-aa7ea8bd6e695ec6ea47f9c47b0d86190874a1dc.zip | |
(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." | |||
| 109 | (substring name 0 (match-beginning 0)) | 109 | (substring name 0 (match-beginning 0)) |
| 110 | name))) | 110 | name))) |
| 111 | (print-length nil) | 111 | (print-length nil) |
| 112 | (float-output-format "%.20e") | 112 | (float-output-format nil) |
| 113 | (done-any nil) | 113 | (done-any nil) |
| 114 | (visited (get-file-buffer file)) | 114 | (visited (get-file-buffer file)) |
| 115 | output-end) | 115 | output-end) |