help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to stop all edebug?


From: HaiJun Zhang
Subject: Re: How to stop all edebug?
Date: Thu, 24 Oct 2019 12:45:55 +0000

在 2019年10月24日 +0800 PM7:05,Michael Heerdegen <michael_heerdegen@web.de>,写道:

Correct - my mistake. The missing function had been added in the same
commit some days ago. Here it is the complete code:

#+begin_src emacs-lisp
(defun edebug--edebug-on-entry-functions ()
(let ((functions nil))
(mapatoms
(lambda (symbol)
(when (and (fboundp symbol)
(get symbol 'edebug-on-entry))
(push symbol functions)))
obarray)
functions))

(dolist (function (edebug--edebug-on-entry-functions))
(put function 'edebug-on-entry nil))
#+end_src

That should work now.

I tried and it didn’t work. I eval `(edebug--edebug-on-entry-functions)` and it 
returns nil.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]