aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorBrian Fox <[email protected]>1993-09-21 07:18:36 +0000
committerBrian Fox <[email protected]>1993-09-21 07:18:36 +0000
commit9c0415e0b53bdb7cf39753d2c7edddcffd31a361 (patch)
treedfc651de0d0d12eb85fadd390ceba9f0989efc8f /lisp/emacs-lisp
parent3222085ea28076287dd7ea8d661ec4aafb9b007a (diff)
(edebug-enter): Don't call the current function being debugged in
pre-command-hook or post-command-hook.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/edebug.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index a5acfd5087..9061751082 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -1165,6 +1165,10 @@ result of BODY."
;; Reset edebug-mode to the initial mode.
(setq edebug-mode edebug-initial-mode))
(let* ((edebug-entered t)
+ (pre-command-hook (if (memq edebug-func pre-command-hook)
+ nil pre-command-hook))
+ (post-command-hook (if (memq edebug-func post-command-hook)
+ nil post-command-hook))
(edebug-data (get edebug-func 'edebug))
;; pull out parts of the edebug-data
(edebug-func-mark (car edebug-data)) ; mark at function start