1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-29 08:31:35 -08:00

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.
This commit is contained in:
Alan Mackenzie 2020-05-04 18:26:38 +00:00
parent 4b419083f9
commit 9f5999b08d

View file

@ -2844,7 +2844,6 @@ See `edebug-behavior-alist' for implementations.")
(goto-char edebug-buffer-outside-point))
;; ... nothing more.
)
(edebug--overlay-breakpoints-remove (point-min) (point-max))
;; Could be an option to keep eval display up.
(if edebug-eval-buffer (kill-buffer edebug-eval-buffer))
(with-timeout-unsuspend edebug-with-timeout-suspend)
@ -3274,8 +3273,7 @@ With prefix argument, make it a temporary breakpoint."
(unless breakpoint
(user-error "No breakpoint near point"))
(setf (nth 4 breakpoint)
(not (nth 4 breakpoint)))
(edebug--overlay-breakpoints name))))
(not (nth 4 breakpoint))))))
(defun edebug-set-global-break-condition (expression)
"Set `edebug-global-break-condition' to EXPRESSION."