aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Mackenzie2020-05-04 18:26:38 +0000
committerAlan Mackenzie2020-05-04 18:26:38 +0000
commit9f5999b08d4c9cfa37f19acec1c874db519e5705 (patch)
tree7224af6a23ee5cee7529172dfdc9050b8de4c0a4
parent4b419083f92dc4b4313ae0d9991b825331c2f651 (diff)
downloademacs-9f5999b08d4c9cfa37f19acec1c874db519e5705.tar.gz
emacs-9f5999b08d4c9cfa37f19acec1c874db519e5705.zip
Remove calls to non-existent functions from edebug.el.
Do not merge to master. *lisp/emacs-lisp/edebug.el (edebug--display-1) (edebug-toggle-disable-breakpoint): Remove calls to edebug--overlay-breakpoints and edebug--overlay-breakpoints-removed which had been overlooked in a recent changed to edebug.
-rw-r--r--lisp/emacs-lisp/edebug.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index dd1a17eb515..a0bc6562bc9 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -2844,7 +2844,6 @@ See `edebug-behavior-alist' for implementations.")
2844 (goto-char edebug-buffer-outside-point)) 2844 (goto-char edebug-buffer-outside-point))
2845 ;; ... nothing more. 2845 ;; ... nothing more.
2846 ) 2846 )
2847 (edebug--overlay-breakpoints-remove (point-min) (point-max))
2848 ;; Could be an option to keep eval display up. 2847 ;; Could be an option to keep eval display up.
2849 (if edebug-eval-buffer (kill-buffer edebug-eval-buffer)) 2848 (if edebug-eval-buffer (kill-buffer edebug-eval-buffer))
2850 (with-timeout-unsuspend edebug-with-timeout-suspend) 2849 (with-timeout-unsuspend edebug-with-timeout-suspend)
@@ -3274,8 +3273,7 @@ With prefix argument, make it a temporary breakpoint."
3274 (unless breakpoint 3273 (unless breakpoint
3275 (user-error "No breakpoint near point")) 3274 (user-error "No breakpoint near point"))
3276 (setf (nth 4 breakpoint) 3275 (setf (nth 4 breakpoint)
3277 (not (nth 4 breakpoint))) 3276 (not (nth 4 breakpoint))))))
3278 (edebug--overlay-breakpoints name))))
3279 3277
3280(defun edebug-set-global-break-condition (expression) 3278(defun edebug-set-global-break-condition (expression)
3281 "Set `edebug-global-break-condition' to EXPRESSION." 3279 "Set `edebug-global-break-condition' to EXPRESSION."