summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleh Krehel <ohwoeowho@gmail.com>2014-10-27 15:26:47 +0100
committerOleh Krehel <ohwoeowho@gmail.com>2014-10-27 15:26:47 +0100
commitf70439f190e7f01381927860c9191ea3f1239690 (patch)
tree401e43dc2c659ab43bacfd48541c1a6dc0ff0088
parentca31d59f24b60c5e7183c6ae922888c8b01c30ef (diff)
downloadorg-mode-f70439f190e7f01381927860c9191ea3f1239690.tar.gz
ob-clojure.el: Fix compatibility issue
* lisp/ob-clojure.el (org-babel-execute:clojure): Fix compatibility issue with cider >0.7.0.
-rw-r--r--lisp/ob-clojure.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ob-clojure.el b/lisp/ob-clojure.el
index ca6f93b..21a3ef8 100644
--- a/lisp/ob-clojure.el
+++ b/lisp/ob-clojure.el
@@ -94,7 +94,7 @@
(nrepl-sync-request:eval expanded)
(if (or (member "output" result-params)
(member "pp" result-params))
- :stdout
+ "out"
"value")))))
(slime
(require 'slime)