From 4692d8ed1cebc12d48a73d00728c92b1138c0832 Mon Sep 17 00:00:00 2001 From: rubikitch Date: Fri, 23 Apr 2010 09:39:02 +0900 Subject: [PATCH] `anything-sources' is not let-binded now. --- anything.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/anything.el b/anything.el index 06c3039..13014b6 100644 --- a/anything.el +++ b/anything.el @@ -1616,7 +1616,8 @@ But the anything buffer has no contents. ") (defvar anything-restored-variables '( anything-candidate-number-limit - anything-source-filter) + anything-source-filter + anything-sources) "Variables which are restored after `anything' invocation.") ;; `anything-saved-sources' is removed @@ -2148,8 +2149,8 @@ already-bound variables. Yuck! anything-quit anything-follow-mode (case-fold-search t) (anything-buffer (or any-buffer anything-buffer)) - (anything-sources (anything-normalize-sources any-sources)) (anything-map (or any-keymap anything-map))) + (setq anything-sources (anything-normalize-sources any-sources)) (anything-initialize-1 any-resume any-input) (anything-hooks 'setup) (if (eq any-resume t) -- 2.11.4.GIT