aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2014-12-15 22:13:42 -0200
committerArtur Malabarba <bruce.connor.am@gmail.com>2014-12-15 22:13:42 -0200
commit856ddbd4f80bb4bd1768cd98555efee2184ae6ee (patch)
treebde0b683f5425bf1894157096b99602351c95539
parent3e332ab028d1b15b1a255411206368e53b372ff9 (diff)
Hotfix require let-alist explicitly.
Might affect #151
-rw-r--r--sx.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/sx.el b/sx.el
index c8d4e5b..4ad0fd5 100644
--- a/sx.el
+++ b/sx.el
@@ -312,8 +312,10 @@ with a `link' property)."
If ALIST doesn't have a `site' property, one is created using the
`link' property."
(declare (indent 1) (debug t))
- `(progn (sx--ensure-site ,alist)
- (let-alist ,alist ,@body)))
+ `(progn
+ (require 'let-alist)
+ (sx--ensure-site ,alist)
+ (let-alist ,alist ,@body)))
(defcustom sx-init-hook nil
"Hook run when SX initializes.