summaryrefslogtreecommitdiff
path: root/cider-debug.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2015-10-03 12:40:25 +0100
committerArtur Malabarba <bruce.connor.am@gmail.com>2015-10-03 15:42:25 +0100
commita4fc1e990974a0dc17dcec8fbfd3ac2eea2f162a (patch)
tree488d6d5bda3cf0e963de93b72b1413e45109cb7e /cider-debug.el
parent2fcbec2db09f0316d0780ac1f665c8af81c7026d (diff)
Make the debugger wait time a little shorter
This reduces the time the debugger sits and wait at the _end_ of a debug session, with the trade-off that it might think a session has ended if one of the steps takes too long.
Diffstat (limited to 'cider-debug.el')
-rw-r--r--cider-debug.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-debug.el b/cider-debug.el
index e8727923..c5a51204 100644
--- a/cider-debug.el
+++ b/cider-debug.el
@@ -316,7 +316,7 @@ In order to work properly, this mode must be activated by
;; This is for the `:done' sent in reply to the debug-input we provided.
(when (accept-process-output proc 0.2)
;; This is for actually waiting for the next message.
- (accept-process-output proc 1)))
+ (accept-process-output proc 0.5)))
(unless cider--debug-mode
(setq buffer-read-only nil)
(cider--debug-remove-overlays (current-buffer)))