diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-15 22:13:42 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-15 22:13:42 -0200 |
commit | 856ddbd4f80bb4bd1768cd98555efee2184ae6ee (patch) | |
tree | bde0b683f5425bf1894157096b99602351c95539 | |
parent | 3e332ab028d1b15b1a255411206368e53b372ff9 (diff) |
Hotfix require let-alist explicitly.
Might affect #151
-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. |