From: Robin Templeton Date: Thu, 20 Mar 2014 05:48:56 +0000 (-0400) Subject: show entire backtrace in `debug' X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/df99b3496d00202a6f98c22b65417712c34a6b7d show entire backtrace in `debug' --- diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el index ab6368beea..e3d5cdc341 100644 --- a/lisp/emacs-lisp/debug.el +++ b/lisp/emacs-lisp/debug.el @@ -276,15 +276,6 @@ That buffer should be current already." (print-length 50)) (backtrace)) (goto-char (point-min)) - (delete-region (point) - (progn - (search-forward "\n debug(") - (forward-line (if (eq (car args) 'debug) - ;; Remove debug--implement-debug-on-entry - ;; and the advice's `apply' frame. - 3 - 1)) - (point))) (insert "Debugger entered") ;; lambda is for debug-on-call when a function call is next. ;; debug is for debug-on-entry function called.