diff options
author | Sean Allred <code@seanallred.com> | 2014-12-30 18:10:39 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-12-30 18:10:39 -0500 |
commit | 35b0883d3e551c5cbc4f416082957e977d6e03eb (patch) | |
tree | 08b00b5208e3a1fd870469fa032c78afa72632c1 | |
parent | b20f56b0c59b1e99fac745e408369d01de0f0bb5 (diff) |
Reapply ef1d321a157e300d29c48e461257897fca1c9aa4
It was somehow lost in the merging.
-rw-r--r-- | sx.el | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -136,10 +136,11 @@ with a `link' property)." If ALIST doesn't have a `site' property, one is created using the `link' property." (declare (indent 1) (debug t)) + (require 'let-alist) `(progn - (require 'let-alist) (sx--ensure-site ,alist) - (let-alist ,alist ,@body))) + ,(macroexpand + `(let-alist ,alist ,@body)))) ;;; Browsing filter |