@@ -698,11 +698,10 @@ If BOL is non-nil, emit at the beginning of the line."
698
698
(cider-repl--insert-prompt cider-buffer-ns))))
699
699
(cider-repl--show-maximum-output)))
700
700
701
- (defun cider-repl-emit-result (buffer string &optional bol show-prefix )
701
+ (defun cider-repl-emit-result (buffer string show-prefix &optional bol )
702
702
" Emit into BUFFER the result STRING and mark it as an evaluation result.
703
- If BOL is non-nil insert at the beginning of the line.
704
703
If SHOW-PREFIX is non-nil insert `cider-repl-result-prefix' at the beginning
705
- of the line."
704
+ of the line. If BOL is non-nil insert at the beginning of the line. "
706
705
(with-current-buffer buffer
707
706
(save-excursion
708
707
(cider-save-marker cider-repl-output-start
@@ -771,7 +770,7 @@ the symbol."
771
770
(nrepl-make-response-handler buffer
772
771
(let (after-first-result-chunk)
773
772
(lambda (buffer value )
774
- (cider-repl-emit-result buffer value t (not after-first-result-chunk))
773
+ (cider-repl-emit-result buffer value (not after-first-result-chunk) t )
775
774
(setq after-first-result-chunk t )))
776
775
(lambda (buffer out )
777
776
(cider-repl-emit-stdout buffer out))
@@ -782,7 +781,7 @@ the symbol."
782
781
nrepl-err-handler
783
782
(let (after-first-result-chunk)
784
783
(lambda (buffer pprint-out )
785
- (cider-repl-emit-result buffer pprint-out nil (not after-first-result-chunk))
784
+ (cider-repl-emit-result buffer pprint-out (not after-first-result-chunk))
786
785
(setq after-first-result-chunk t )))))
787
786
788
787
(defun cider-repl--send-input (&optional newline )
0 commit comments