diff options
| author | Erik Naggum | 1996-09-10 23:00:29 +0000 |
|---|---|---|
| committer | Erik Naggum | 1996-09-10 23:00:29 +0000 |
| commit | 77308fd7ec3fc4fb05b0d33c92aa8739237999fa (patch) | |
| tree | dc0070b6c007540a4b729049d56b9551313bfacd | |
| parent | 5a161ab5ff3da83d3271d37c97b3a52e89d4e14b (diff) | |
| download | emacs-77308fd7ec3fc4fb05b0d33c92aa8739237999fa.tar.gz emacs-77308fd7ec3fc4fb05b0d33c92aa8739237999fa.zip | |
(byte-compile-output-file-form): Bind print-quoted and print-gensym to t
when writing compiled byte-code objects.
(byte-compile-output-docform): Likewise.
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index e38a2dc0071..13f52717cff 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -1465,8 +1465,8 @@ With argument, insert value in current buffer after the form." | |||
| 1465 | (let ((print-escape-newlines t) | 1465 | (let ((print-escape-newlines t) |
| 1466 | (print-length nil) | 1466 | (print-length nil) |
| 1467 | (print-level nil) | 1467 | (print-level nil) |
| 1468 | (print-readably t) ; print #[] for bytecode, 'x for (quote x) | 1468 | (print-quoted t) |
| 1469 | (print-gensym nil)) ; this is too dangerous for now | 1469 | (print-gensym t)) |
| 1470 | (princ "\n" outbuffer) | 1470 | (princ "\n" outbuffer) |
| 1471 | (prin1 form outbuffer) | 1471 | (prin1 form outbuffer) |
| 1472 | nil))) | 1472 | nil))) |
| @@ -1514,8 +1514,8 @@ list that represents a doc string reference. | |||
| 1514 | (prin1 name outbuffer))) | 1514 | (prin1 name outbuffer))) |
| 1515 | (insert (car info)) | 1515 | (insert (car info)) |
| 1516 | (let ((print-escape-newlines t) | 1516 | (let ((print-escape-newlines t) |
| 1517 | (print-readably t) ; print #[] for bytecode, 'x for (quote x) | 1517 | (print-quoted t) |
| 1518 | (print-gensym nil) ; this is too dangerous for now | 1518 | (print-gensym t) |
| 1519 | (index 0)) | 1519 | (index 0)) |
| 1520 | (prin1 (car form) outbuffer) | 1520 | (prin1 (car form) outbuffer) |
| 1521 | (while (setq form (cdr form)) | 1521 | (while (setq form (cdr form)) |