summaryrefslogtreecommitdiff
path: root/helm-adaptive.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2017-03-22 10:58:19 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2017-03-22 10:58:19 +0100
commit75a783771d8b1144cee8f3343ec97638da3bc9b0 (patch)
tree923d82805ff7941eb6d6b43779377069293f6ddd /helm-adaptive.el
parentf2d58e79bafe48fd554e6b422a08c97379075831 (diff)
Use assq and memq where needed.
* helm-adaptive.el (helm-adapt-use-adaptive-p): Do it. * helm-bookmark.el (helm-bookmark-image-bookmark-p): Do it. * helm-font.el (helm-source-xfonts): Do it. * helm-net.el (helm-google-suggest-parser): Do it. (helm-wikipedia--parse-summary): Do it. * helm.el (helm-initialize): Do it. (helm-get-cached-candidates): Do it. (helm-update): Do it. (helm-update-source-p): Do it. (helm-output-filter--process-source): Do it. (helm-execute-selection-action-1): Do it. (helm-file-completion-source-p): Do it.
Diffstat (limited to 'helm-adaptive.el')
-rw-r--r--helm-adaptive.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-adaptive.el b/helm-adaptive.el
index b3d0c397..ef5f434f 100644
--- a/helm-adaptive.el
+++ b/helm-adaptive.el
@@ -101,7 +101,7 @@ Format: ((SOURCE-NAME (SELECTED-CANDIDATE (PATTERN . NUMBER-OF-USE) ...) ...) ..
(adapt-source (or (assoc-default 'filtered-candidate-transformer source)
(assoc-default 'candidate-transformer source))))
(if (listp adapt-source)
- (and (member 'helm-adaptive-sort adapt-source) source)
+ (and (memq 'helm-adaptive-sort adapt-source) source)
(and (eq adapt-source 'helm-adaptive-sort) source)))))
(defun helm-adaptive-store-selection ()