diff options
author | Sean Allred <code@seanallred.com> | 2014-12-30 23:12:58 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-12-30 23:12:58 -0500 |
commit | 9650a1541b43da18067466df7671d23d5baffeed (patch) | |
tree | 52e043a0b6db21604bd029f064b3d462bcd4bc03 /sx.el | |
parent | 1267f300c850173e74dda0b7f704261b4a25b85c (diff) | |
parent | b8eb3d978109c1d5bf18be8cc1e1678afb6c017a (diff) |
Merge pull request #169 from vermiculus/issue-151--dot-variables
Fix dot-variable troubles
Diffstat (limited to 'sx.el')
-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 |