Skip to content

Commit

Permalink
* helm.el (helm-get-candidates): Wrap helm-interpret-value in while-n…
Browse files Browse the repository at this point in the history
…o-input.
  • Loading branch information
thierryvolpiatto committed Nov 26, 2012
1 parent 08c97f3 commit 436cd1d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion helm.el
Expand Up @@ -1776,7 +1776,8 @@ Helm plug-ins are realized by this function."
" a variable or a list: %s")
candidate-source)))
(candidates (condition-case err
(helm-interpret-value candidate-source source)
(while-no-input
(helm-interpret-value candidate-source source))
(error (funcall type-error)))))
(cond ((processp candidates) candidates)
((listp candidates)
Expand Down

0 comments on commit 436cd1d

Please sign in to comment.