show entire backtrace in `debug'
authorRobin Templeton <robin@terpri.org>
Thu, 20 Mar 2014 05:48:56 +0000 (01:48 -0400)
committerRobin Templeton <robin@terpri.org>
Mon, 20 Apr 2015 04:29:01 +0000 (00:29 -0400)
lisp/emacs-lisp/debug.el

index ab6368b..e3d5cdc 100644 (file)
@@ -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.