emacs-diffs
[Top][All Lists]
Advanced

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

emacs-27 9f5999b: Remove calls to non-existent functions from edebug.el.


From: Alan Mackenzie
Subject: emacs-27 9f5999b: Remove calls to non-existent functions from edebug.el.
Date: Mon, 4 May 2020 14:27:43 -0400 (EDT)

branch: emacs-27
commit 9f5999b08d4c9cfa37f19acec1c874db519e5705
Author: Alan Mackenzie <address@hidden>
Commit: Alan Mackenzie <address@hidden>

    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.
---
 lisp/emacs-lisp/edebug.el | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index dd1a17e..a0bc656 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -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."



reply via email to

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