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 6
6
7
7
* ` cider-current-connection ` actually, really considers major mode before ` cider-repl-type ` .
8
8
9
+ ### Bugs fixed
10
+
11
+ * [ #1521 ] ( https://github.com/clojure-emacs/cider/pull/1521 ) : Don't assume the repl buffer is in the current frame in ` cider-repl--show-maximum-output ` .
12
+
9
13
## 0.10.1 / 2015-01-05
10
14
11
15
### 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 ) t )))
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