From b73cdec2ae1aadc9923af2eda090cf5290f8c57c Mon Sep 17 00:00:00 2001 From: Paul Stadig Date: Sat, 17 May 2014 07:06:20 -0400 Subject: [PATCH] Send stderr output to the REPL buffer. Reflection warnings are sent to stderr, and are currently displayed in the minibuffer (though you can't actually see them there because they get scrolled out of view). They used to be displayed in the REPL, and it is more helpful to have them displayed there. --- cider-interaction.el | 1 + 1 file changed, 1 insertion(+) diff --git a/cider-interaction.el b/cider-interaction.el index 5e54cdf7e..6b447ae67 100644 --- a/cider-interaction.el +++ b/cider-interaction.el @@ -752,6 +752,7 @@ The handler simply inserts the result value in BUFFER." (lambda (_buffer value) (cider-repl-emit-interactive-output value)) (lambda (buffer err) + (cider-repl-emit-interactive-output err) (message "%s" err) (cider-highlight-compilation-errors buffer err))