Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 615-621) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 197-199) - Merge from emacs--devo--0 - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-166
This commit is contained in:
commit
bb5b9e9dbe
118 changed files with 2221 additions and 5688 deletions
|
@ -296,6 +296,10 @@ When this option is true, if you load the compiled file and then move it,
|
|||
the functions you loaded will not be able to run.")
|
||||
;;;###autoload(put 'byte-compile-dynamic 'safe-local-variable 'booleanp)
|
||||
|
||||
(defvar byte-compile-disable-print-circle nil
|
||||
"If non-nil, disable `print-circle' on printing a byte-compiled code.")
|
||||
;;;###autoload(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp)
|
||||
|
||||
(defcustom byte-compile-dynamic-docstrings t
|
||||
"*If non-nil, compile doc strings for lazy access.
|
||||
We bury the doc strings of functions and variables
|
||||
|
@ -2003,7 +2007,8 @@ With argument, insert value in current buffer after the form."
|
|||
(print-level nil)
|
||||
(print-quoted t)
|
||||
(print-gensym t)
|
||||
(print-circle t)) ; handle circular data structures
|
||||
(print-circle ; handle circular data structures
|
||||
(not byte-compile-disable-print-circle)))
|
||||
(princ "\n" outbuffer)
|
||||
(prin1 form outbuffer)
|
||||
nil)))
|
||||
|
@ -2060,7 +2065,8 @@ list that represents a doc string reference.
|
|||
;; print-gensym-alist not to be cleared
|
||||
;; between calls to print functions.
|
||||
(print-gensym '(t))
|
||||
(print-circle t) ; handle circular data structures
|
||||
(print-circle ; handle circular data structures
|
||||
(not byte-compile-disable-print-circle))
|
||||
print-gensym-alist ; was used before print-circle existed.
|
||||
(print-continuous-numbering t)
|
||||
print-number-table
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue