aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRobin Templeton <[email protected]>2014-03-20 01:48:56 -0400
committerRobin Templeton <[email protected]>2015-04-20 00:29:01 -0400
commitdf99b3496d00202a6f98c22b65417712c34a6b7d (patch)
tree45ca0363b0c16dc77c96ca113ad6b3e94b9341e5 /lisp
parentb9af507817a9dc8e3a2baa4128410a32b9301a8a (diff)
show entire backtrace in `debug'
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/debug.el9
1 files changed, 0 insertions, 9 deletions
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.