From 856ddbd4f80bb4bd1768cd98555efee2184ae6ee Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Mon, 15 Dec 2014 22:13:42 -0200 Subject: Hotfix require let-alist explicitly. Might affect #151 --- sx.el | 6 ++++-- 1 file 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. -- cgit v1.2.3