+2007-01-29 Kenichi Handa <handa@m17n.org>
+
+ * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): New
+ variable.
+ (byte-compile-output-file-form): Bing print-circle to nil if
+ byte-compile-output-file-form is not nil.
+ (byte-compile-output-docform): Likewise.
+
2007-01-28 Kim F. Storm <storm@cua.dk>
* emulation/cua-base.el (cua-global-keymap, cua--region-keymap):
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
(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)))
;; 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