aboutsummaryrefslogtreecommitdiff
path: root/sx.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2014-12-11 11:18:32 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2014-12-11 11:29:36 +0000
commit36ae5019aa6d1cae3cab9e3330591e227b427814 (patch)
tree273a69a7c16c9e71eca38668d4feb6b8611ba9a8 /sx.el
parent4a9736e5104e1eafbf197a441eb6b9178641711e (diff)
Fix assoc-let test
Diffstat (limited to 'sx.el')
-rw-r--r--sx.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/sx.el b/sx.el
index 4c1581e..bb7eddc 100644
--- a/sx.el
+++ b/sx.el
@@ -335,7 +335,8 @@ with a `link' property)."
If ALIST doesn't have a `site' property, one is created using the
`link' property."
(declare (indent 1) (debug t))
- `(let-alist (sx--ensure-site ,alist) ,@body))
+ `(progn (sx--ensure-site ,alist)
+ (let-alist ,alist ,@body)))
(defcustom sx-init-hook nil
"Hook run when SX initializes.