diff options
| author | Richard M. Stallman | 1993-07-21 22:37:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-07-21 22:37:55 +0000 |
| commit | 0a933d4b4f74489062056245cf18872dfd8dc540 (patch) | |
| tree | 7436900f1c836b843b55e16735a51b238c4513bf | |
| parent | 1110dff34196a2a6fbd85a8339722dc78a7d5a7c (diff) | |
| download | emacs-0a933d4b4f74489062056245cf18872dfd8dc540.tar.gz emacs-0a933d4b4f74489062056245cf18872dfd8dc540.zip | |
(generate-file-autoloads): Bind float-output-format.
Bind print-escape-newlines.
| -rw-r--r-- | lisp/emacs-lisp/autoload.el | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 8c184070be3..7e6be4c6c99 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 | (floating-output-format "%20e") | 112 | (float-output-format "%.20e") |
| 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) |
| @@ -167,10 +167,11 @@ are used." | |||
| 167 | (elt (cdr p))) | 167 | (elt (cdr p))) |
| 168 | (setcdr p nil) | 168 | (setcdr p nil) |
| 169 | (princ "\n(" outbuf) | 169 | (princ "\n(" outbuf) |
| 170 | (mapcar (function (lambda (elt) | 170 | (let ((print-escape-newlines t)) |
| 171 | (prin1 elt outbuf) | 171 | (mapcar (function (lambda (elt) |
| 172 | (princ " " outbuf))) | 172 | (prin1 elt outbuf) |
| 173 | autoload) | 173 | (princ " " outbuf))) |
| 174 | autoload)) | ||
| 174 | (princ "\"\\\n" outbuf) | 175 | (princ "\"\\\n" outbuf) |
| 175 | (princ (substring | 176 | (princ (substring |
| 176 | (prin1-to-string (car elt)) 1) | 177 | (prin1-to-string (car elt)) 1) |