diff options
-rw-r--r-- | sx.el | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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. |