mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
* emacs-lisp/edebug.el (edebug-safe-prin1-to-string): Capture
error from printing circular structures.
This commit is contained in:
parent
d912b87a54
commit
14e7cb9400
2 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2005-12-17 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* emacs-lisp/edebug.el (edebug-safe-prin1-to-string): Capture
|
||||
error from printing circular structures.
|
||||
|
||||
2005-12-17 Martin Rudalics <rudalics@gmx.at> (tiny change)
|
||||
|
||||
* wid-edit.el (widget-checkbox-action): Clear undo info.
|
||||
|
|
|
|||
|
|
@ -3711,7 +3711,9 @@ Return the result of the last expression."
|
|||
(print-level (or edebug-print-level print-level))
|
||||
(print-circle (or edebug-print-circle print-circle))
|
||||
(print-readably nil)) ;; lemacs uses this.
|
||||
(edebug-prin1-to-string value)))
|
||||
(condition-case nil
|
||||
(edebug-prin1-to-string value)
|
||||
(error "#Apparently circular structure#"))))
|
||||
|
||||
(defun edebug-compute-previous-result (edebug-previous-value)
|
||||
(if edebug-unwrap-results
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue