summaryrefslogtreecommitdiff
path: root/helm-eshell.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2016-04-08 12:07:47 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2016-04-08 12:07:47 +0200
commit70047bfcf5cd8651e21ead092714de53ff2a0cc3 (patch)
treed68fa75d38ce8e9904768570294347407af42b9e /helm-eshell.el
parent336612e2d665100a32df31990bea8f31cf51e5d1 (diff)
Use candidate-transformer in helm-eshell-history-source.
* helm-eshell.el (helm-eshell-history-source): No need to use filtered here.
Diffstat (limited to 'helm-eshell.el')
-rw-r--r--helm-eshell.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/helm-eshell.el b/helm-eshell.el
index ef8f43b6..4abff66b 100644
--- a/helm-eshell.el
+++ b/helm-eshell.el
@@ -176,8 +176,8 @@ The function that call this should set `helm-ec-target' to thing at point."
(candidates-file :initform eshell-history-file-name)
(nomark :initform t)
(keymap :initform helm-eshell-history-map)
- (filtered-candidate-transformer :initform (lambda (candidates sources)
- (reverse candidates)))
+ (candidate-transformer :initform (lambda (candidates)
+ (reverse candidates)))
(candidate-number-limit :initform 9999)
(action :initform (lambda (candidate)
(eshell-kill-input)