summaryrefslogtreecommitdiff
path: root/helm-eval.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-eval.el
parentc1377e947e67a64231d9b7c5a9f2f5c33cc2dee8 (diff)
Fix unused args source in some filtered candidates functions.
Diffstat (limited to 'helm-eval.el')
-rw-r--r--helm-eval.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/helm-eval.el b/helm-eval.el
index 6fad4107..d5dd40a0 100644
--- a/helm-eval.el
+++ b/helm-eval.el
@@ -69,7 +69,7 @@ Should take one arg: the string to display."
(dummy)
(multiline)
(mode-line . "C-RET: nl-and-indent, tab: reindent, C-tab:complete, C-p/n: next/prec-line.")
- (filtered-candidate-transformer . (lambda (candidates source)
+ (filtered-candidate-transformer . (lambda (candidates _source)
(list
(condition-case nil
(with-helm-current-buffer
@@ -132,7 +132,7 @@ Should take one arg: the string to display."
(defvar helm-source-calculation-result
'((name . "Calculation Result")
(dummy)
- (filtered-candidate-transformer . (lambda (candidates source)
+ (filtered-candidate-transformer . (lambda (candidates _source)
(list
(condition-case nil
(calc-eval helm-pattern)