summaryrefslogtreecommitdiff
path: root/helm-mode.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2013-11-02 10:17:39 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2013-11-02 10:17:39 +0100
commit40ada5b58fe55add8a75c0ead32ae6900fbfc9bc (patch)
tree44184f0c44cee1f75e3ba5534f591b2118731b56 /helm-mode.el
parentc1377e947e67a64231d9b7c5a9f2f5c33cc2dee8 (diff)
Fix unused args source in some filtered candidates functions.
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 f6867eb8..c58a6b97 100644
--- a/helm-mode.el
+++ b/helm-mode.el
@@ -170,7 +170,7 @@ If COLLECTION is an `obarray', a TEST should be needed. See `obarray'."
(t (all-completions "" collection test)))))
(if sort-fn (sort cands sort-fn) cands)))
-(defun helm-cr-default-transformer (candidates source)
+(defun helm-cr-default-transformer (candidates _source)
"Default filter candidate function for `helm-comp-read'."
(loop with lst for c in candidates
for cand = (if (stringp c) (replace-regexp-in-string "\\s\\" "" c) c)