summaryrefslogtreecommitdiff
path: root/helm-mode.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2020-01-05 17:48:22 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2020-01-05 17:48:22 +0100
commit7365a9dcb1fdace1a262d51879ce3d2d8a1b3b67 (patch)
tree21e890effee7ae17fefb8a1b9fe2625c6e85c030 /helm-mode.el
parent3f8a351e568e4d50aeec867bd7e24859be95f629 (diff)
Fix typo in prvious commit
* helm-mode.el (helm-comp-read-get-candidates): predicate vs test.
Diffstat (limited to 'helm-mode.el')
-rw-r--r--helm-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-mode.el b/helm-mode.el
index c32c587d..88842919 100644
--- a/helm-mode.el
+++ b/helm-mode.el
@@ -411,7 +411,7 @@ If COLLECTION is an `obarray', a TEST should be needed. See `obarray'."
((and (functionp collection) (not (string= input ""))
(or minibuffer-completing-file-name
(eq (completion-metadata-get
- (completion-metadata input collection predicate)
+ (completion-metadata input collection test)
'category)
'file)))
(cl-loop for f in (funcall collection input test t)