소스 검색

ob-clojure.el (org-babel-execute:clojure): Don't pretty print results

* ob-clojure.el (org-babel-execute:clojure): Don't pretty
print results.

Thanks to Daniel Szmulewicz for reporting this.
Bastien Guerry 11 년 전
부모
커밋
059dc08dec
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/ob-clojure.el

+ 1 - 1
lisp/ob-clojure.el

@@ -103,7 +103,7 @@
       (cider
        (require 'cider)
        (or (nth 1 (nrepl-send-string-sync
-		   (format "(clojure.pprint/pprint %s)" expanded)
+		   expanded
 		   (cider-current-ns)
 		   (nrepl-current-tooling-session)))
 	   (error "nREPL not connected!  Use M-x cider-jack-in RET")))