summaryrefslogtreecommitdiff
path: root/cider-compat.el
diff options
context:
space:
mode:
authorTianxiang Xiong <tianxiang.xiong@fundingcircle.com>2017-02-28 13:44:50 -0800
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2017-03-01 08:02:31 +0200
commit5d32b960739162b75c044be0175b9564e7b8293e (patch)
tree6dc9c34552f6a1a13e3bf5b99ddf3b85e6ccbe91 /cider-compat.el
parent386a7c4b98b701a5ca11fce4b223f72984998454 (diff)
Don't use `list` where backquoting would be clearer
Diffstat (limited to 'cider-compat.el')
-rw-r--r--cider-compat.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-compat.el b/cider-compat.el
index c34bc7bf..4f6e9d8a 100644
--- a/cider-compat.el
+++ b/cider-compat.el
@@ -151,7 +151,7 @@ bound and (optionally) used in BODY, and its cadr is a sexp to be
evalled to set symbol's value. In the special case you only want
to bind a single value, BINDINGS can just be a plain tuple."
(declare (indent 1) (debug if-let))
- (list 'if-let bindings (macroexp-progn body)))))
+ `(if-let ,bindings ,(macroexp-progn body)))))
(provide 'cider-compat)
;;; cider-compat.el ends here