Skip to content

Commit

Permalink
Merge branch 'exp'
Browse files Browse the repository at this point in the history
  • Loading branch information
Thierry Volpiatto committed Jun 8, 2016
2 parents 8d55345 + 9f8159c commit 5bd6042
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions helm-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,8 @@ It should be used when candidate list don't need to rebuild dynamically."
(helm-comp-read-get-candidates collection test)))
;; Ensure `all-completions' will not be used
;; a second time to recompute COLLECTION [1].
(setq alistp t)
(setq alistp t
test nil)
(setq default (car default)))
(helm-comp-read
prompt collection
Expand All @@ -631,7 +632,7 @@ It should be used when candidate list don't need to rebuild dynamically."
:reverse-history helm-mode-reverse-history
:input-history history
:must-match require-match
:alistp alistp ; Ensure `all-completions' is used when non-nil [1].
:alistp alistp ; Ensure `all-completions' is not used when non-nil [1].
:name name
:requires-pattern (if (and (string= default "")
(or (eq require-match 'confirm)
Expand Down

0 comments on commit 5bd6042

Please sign in to comment.