diff options
| author | Daniel Pettersson <daniel@dpettersson.net> | 2026-04-26 00:17:47 +0200 |
|---|---|---|
| committer | Daniel Pettersson <daniel@dpettersson.net> | 2026-04-26 00:17:47 +0200 |
| commit | e14d8966a3626bc0076d15d361d4c15112db7297 (patch) | |
| tree | 7004d7990c197cc6d0ac7cc19e6257aa9128c15e | |
| parent | a98bb63e7d0669daa0c9b33f6759fefdac374a92 (diff) | |
Fix missing arg to dape-kill error handling
| -rw-r--r-- | dape.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) |
