branch: externals/dape
commit afc77c954ff09dcadc686435fba36e67633d5823
Author: Daniel Pettersson <[email protected]>
Commit: Daniel Pettersson <[email protected]>

    Make dape-breakpoint-remove-at-point interactive again
    
    Thanks to daanturo for finding the unintended change
---
 dape.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dape.el b/dape.el
index a4a9cfe6e9..621495f863 100644
--- a/dape.el
+++ b/dape.el
@@ -2595,6 +2595,7 @@ An hit HITS is an string matching regex:
 (defun dape-breakpoint-remove-at-point (&optional skip-notify)
   "Remove breakpoint, log breakpoint and expression at current line.
 When SKIP-NOTIFY is non-nil, do not notify adapters about removal."
+  (interactive)
   (dolist (breakpoint (dape--breakpoints-at-point))
     (dape--breakpoint-remove breakpoint skip-notify)))
 

Reply via email to