(generate-file-autoloads): Bind float-output-format.
Bind print-escape-newlines.
This commit is contained in:
parent
1110dff341
commit
0a933d4b4f
1 changed files with 6 additions and 5 deletions
|
@ -109,7 +109,7 @@ are used."
|
|||
(substring name 0 (match-beginning 0))
|
||||
name)))
|
||||
(print-length nil)
|
||||
(floating-output-format "%20e")
|
||||
(float-output-format "%.20e")
|
||||
(done-any nil)
|
||||
(visited (get-file-buffer file))
|
||||
output-end)
|
||||
|
@ -167,10 +167,11 @@ are used."
|
|||
(elt (cdr p)))
|
||||
(setcdr p nil)
|
||||
(princ "\n(" outbuf)
|
||||
(mapcar (function (lambda (elt)
|
||||
(prin1 elt outbuf)
|
||||
(princ " " outbuf)))
|
||||
autoload)
|
||||
(let ((print-escape-newlines t))
|
||||
(mapcar (function (lambda (elt)
|
||||
(prin1 elt outbuf)
|
||||
(princ " " outbuf)))
|
||||
autoload))
|
||||
(princ "\"\\\n" outbuf)
|
||||
(princ (substring
|
||||
(prin1-to-string (car elt)) 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue