Mercurial > emacs
comparison lisp/emacs-lisp/autoload.el @ 4555:434ef4c2fda7
(generate-file-autoloads): Set float-output-format to
nil, not "%.20e", since nil is guaranteed to not lose info on output.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 11 Aug 1993 06:38:38 +0000 |
parents | ccb1fb62bba6 |
children | b1e5e6efed1d |
comparison
equal
deleted
inserted
replaced
4554:cf541ed1fed8 | 4555:434ef4c2fda7 |
---|---|
107 (load-name (let ((name (file-name-nondirectory file))) | 107 (load-name (let ((name (file-name-nondirectory file))) |
108 (if (string-match "\\.elc?$" name) | 108 (if (string-match "\\.elc?$" name) |
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) |
116 | 116 |
117 ;; If the autoload section we create here uses an absolute | 117 ;; If the autoload section we create here uses an absolute |