*** empty log message ***
This commit is contained in:
parent
e652a34a67
commit
10a4c11f7e
4 changed files with 109 additions and 80 deletions
|
@ -286,7 +286,16 @@ Redefining FUNCTION also does that."
|
|||
(defun cancel-debug-on-entry (&optional function)
|
||||
"Undo effect of \\[debug-on-entry] on FUNCTION.
|
||||
If argument is nil or an empty string, cancel for all functions."
|
||||
(interactive "aCancel debug on entry (to function): ")
|
||||
(interactive
|
||||
(list (let ((name
|
||||
(completing-read "Cancel debug on entry (to function): "
|
||||
;; Make an "alist" of the functions
|
||||
;; that now have debug on entry.
|
||||
(mapcar 'list
|
||||
(mapcar 'symbol-name
|
||||
debug-function-list))
|
||||
nil t nil)))
|
||||
(if name (intern name)))))
|
||||
(debugger-reenable)
|
||||
(if (and function (not (string= function "")))
|
||||
(progn
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue