1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 10:31:37 -08:00

* lisp/emacs-lisp/debug.el (debugger-setup-buffer): Revert local change to

print depth and length.
This commit is contained in:
Stefan Monnier 2011-03-19 23:53:45 -04:00
parent 414dbb000d
commit bf02cb227d
2 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2011-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/debug.el (debugger-setup-buffer): Revert local change to
print depth and length.
2011-03-19 Stefan Monnier <monnier@iro.umontreal.ca> 2011-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/cl-macs.el (cl-byte-compile-block, cl-block-wrapper) * emacs-lisp/cl-macs.el (cl-byte-compile-block, cl-block-wrapper)

View file

@ -269,10 +269,8 @@ That buffer should be current already."
(setq buffer-undo-list t) (setq buffer-undo-list t)
(let ((standard-output (current-buffer)) (let ((standard-output (current-buffer))
(print-escape-newlines t) (print-escape-newlines t)
(print-quoted t) ;Doesn't seem to work :-( (print-level 8)
(print-level 1000) ;8 (print-length 50))
;; (print-length 50)
)
(backtrace)) (backtrace))
(goto-char (point-min)) (goto-char (point-min))
(delete-region (point) (delete-region (point)