diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-11 11:18:32 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-11 11:29:36 +0000 |
commit | 36ae5019aa6d1cae3cab9e3330591e227b427814 (patch) | |
tree | 273a69a7c16c9e71eca38668d4feb6b8611ba9a8 /sx.el | |
parent | 4a9736e5104e1eafbf197a441eb6b9178641711e (diff) |
Fix assoc-let test
Diffstat (limited to 'sx.el')
-rw-r--r-- | sx.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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. |