File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ and try to associate the created connection with this project automatically.
20
20
* Requires Java 7 or newer.
21
21
* Improve stacktrace presentation of compiler errors (readability, DWIM point positioning).
22
22
23
+ ### Bugs fixed
24
+
25
+ * Don't assume the repl buffer is in the current frame in ` cider-repl--show-maximum-output ` .
26
+
23
27
## 0.10.1 / 2015-01-05
24
28
25
29
### Changes
Original file line number Diff line number Diff line change @@ -392,7 +392,7 @@ This will not work on non-current prompts."
392
392
(defun cider-repl--show-maximum-output ()
393
393
" Put the end of the buffer at the bottom of the window."
394
394
(when (eobp )
395
- (let ((win (get-buffer-window (current-buffer ))))
395
+ (let ((win (get-buffer-window (current-buffer ) 'visible )))
396
396
(when win
397
397
(with-selected-window win
398
398
(set-window-point win (point-max ))
You can’t perform that action at this time.
0 commit comments