diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2017-06-30 18:01:01 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2017-06-30 18:01:01 -0400 |
commit | 7618d29db36396fbd736672cadaca641186c1dc5 (patch) | |
tree | aded461863611e743cd91471b4780a4e7e5f3d2e /lisp/emacs-lisp/debug.el | |
parent | ceedd86ed448b2cd27a5f96297ce7011eb1e0b97 (diff) | |
download | emacs-7618d29db36396fbd736672cadaca641186c1dc5.tar.gz emacs-7618d29db36396fbd736672cadaca641186c1dc5.tar.bz2 emacs-7618d29db36396fbd736672cadaca641186c1dc5.zip |
* lisp/emacs-lisp/debug.el (debugger-list-functions): Remove obsolete msg
Diffstat (limited to 'lisp/emacs-lisp/debug.el')
-rw-r--r-- | lisp/emacs-lisp/debug.el | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el index 726005af9b1..b836e823c73 100644 --- a/lisp/emacs-lisp/debug.el +++ b/lisp/emacs-lisp/debug.el @@ -817,9 +817,13 @@ To specify a nil argument interactively, exit with an empty minibuffer." 'type 'help-function 'help-args (list fun)) (terpri)) - (terpri) - (princ "Note: if you have redefined a function, then it may no longer\n") - (princ "be set to debug on entry, even if it is in the list.")))))) + ;; Now that debug--function-list uses advice-member-p, its + ;; output should be reliable (except for bugs and the exceptional + ;; case where some other advice ends up overriding ours). + ;;(terpri) + ;;(princ "Note: if you have redefined a function, then it may no longer\n") + ;;(princ "be set to debug on entry, even if it is in the list.") + ))))) (defun debug--implement-debug-watch (symbol newval op where) "Conditionally call the debugger. |