summaryrefslogtreecommitdiff
path: root/cider-util.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@tradeo.com>2014-08-27 17:11:13 +0300
committerBozhidar Batsov <bozhidar@tradeo.com>2014-08-27 17:11:13 +0300
commit97e39c110e3ef25972c4f7b2c0999fe74e7ddf77 (patch)
tree3a08f86d869b5a27b62a45b4ccc66706a79b8aec /cider-util.el
parentd249e4b796268226c128e1374c78cf31d54369a3 (diff)
[Fix #752] Use a fully-qualified let in pretty-printing
Diffstat (limited to 'cider-util.el')
-rw-r--r--cider-util.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-util.el b/cider-util.el
index 921ff78b..2be344df 100644
--- a/cider-util.el
+++ b/cider-util.el
@@ -135,7 +135,7 @@ Unless you specify a BUFFER it will default to the current one."
(defun cider-format-pprint-eval (form)
"Return a string of Clojure code that will eval and pretty-print FORM."
- (format "(let [x %s] (clojure.pprint/pprint x) x)" form))
+ (format "(clojure.core/let [x %s] (clojure.pprint/pprint x) x)" form))
(autoload 'pkg-info-version-info "pkg-info.el")