summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Pettersson <daniel@dpettersson.net>2026-04-26 00:17:47 +0200
committerDaniel Pettersson <daniel@dpettersson.net>2026-04-26 00:17:47 +0200
commite14d8966a3626bc0076d15d361d4c15112db7297 (patch)
tree7004d7990c197cc6d0ac7cc19e6257aa9128c15e
parenta98bb63e7d0669daa0c9b33f6759fefdac374a92 (diff)
Fix missing arg to dape-kill error handling
-rw-r--r--dape.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/dape.el b/dape.el
index 89f6261..a3803e3 100644
--- a/dape.el
+++ b/dape.el
@@ -2656,7 +2656,7 @@ terminate. CONN is inferred for interactive invocations."
;; way if the request timeout, otherwise we might force the
;; user to kill the process in some other way.
(if (and error (not (eq error dape--timeout-error)))
- (dape-kill cb 'with-disconnect)
+ (dape-kill conn cb 'with-disconnect)
(dape--shutdown conn)
(dape--request-continue cb))))
((and conn (jsonrpc-running-p conn))