]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove calls to non-existent functions from edebug.el.
authorAlan Mackenzie <acm@muc.de>
Mon, 4 May 2020 18:26:38 +0000 (18:26 +0000)
committerAlan Mackenzie <acm@muc.de>
Mon, 4 May 2020 18:26:38 +0000 (18:26 +0000)
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.

lisp/emacs-lisp/edebug.el

index dd1a17eb515f653850aad1ac6f6774c949cf33ae..a0bc6562bc9fe29dd31e64c3a3ba1b3da7150e2e 100644 (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."