summaryrefslogtreecommitdiff
path: root/helm.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2018-11-21 14:02:04 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2018-11-21 14:02:04 +0100
commitae43bf5ba81b3d77cafa4a0df91a1af00a8e9f91 (patch)
tree353b56767c2c599de54ea7d5c6d920ade65a727d /helm.el
parentfa119eb9c79fb444a8ffd865a894380682f31840 (diff)
Fix action list in helm-exit-and-execute-action
* helm.el (helm-exit-and-execute-action): Ensure we have the list of actions + maybe the actions added temporarily by transformer.
Diffstat (limited to 'helm.el')
-rw-r--r--helm.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm.el b/helm.el
index 2e8741fc..deaac41a 100644
--- a/helm.el
+++ b/helm.el
@@ -1907,7 +1907,7 @@ i.e functions called with RET."
;; source that inherit actions from type, note that ACTION have to
;; be bound to a symbol and not to be an anonymous action
;; i.e. lambda or byte-code.
- (let ((actions (helm-attr 'action nil t)))
+ (let ((actions (helm-get-actions-from-current-source)))
(when actions
(cl-assert (or (eq action actions)
(rassq action actions)