aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.