branch: externals/dape
commit 94b99c3a5b277ecfa205620dedd207b95c848cb9
Author: Daniel Pettersson <[email protected]>
Commit: Daniel Pettersson <[email protected]>
Fix wrong error for step-like functions when no stopped threads
---
dape.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dape.el b/dape.el
index 244e2cd636..b53dfbadb7 100644
--- a/dape.el
+++ b/dape.el
@@ -307,7 +307,7 @@ Run step like COMMAND. If ARG is set run COMMAND ARG
times."
(dolist (thread dape--threads)
(plist-put thread :status "running"))
(dape--info-update-threads-widget)))))
- (message "No live debug adapter process")))
+ (user-error "No stopped threads")))
(defun dape--thread-id-object ()
"Helper to construct a thread id object."