summaryrefslogtreecommitdiff
path: root/helm.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2013-10-23 11:20:10 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2013-10-23 11:20:10 +0200
commit3926da1c4e49057b6b3ba2c0032f8e7e94646de0 (patch)
tree3ede0786bcb7890bc197ae3178a4ac9a24a35345 /helm.el
parent7437328d8db0d7b627582dd4a202edbd6d2b1594 (diff)
* helm.el (helm-get-candidates): Fix timer error.
Diffstat (limited to 'helm.el')
-rw-r--r--helm.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/helm.el b/helm.el
index 65b28842..f306eb2a 100644
--- a/helm.el
+++ b/helm.el
@@ -2232,6 +2232,7 @@ Helm plug-ins are realized by this function."
candidate-fn source))))
(and (listp result) result))))
(invalid-regexp nil)
+ (wrong-type-argument nil) ; FIXME this is probably triggered by new error messages in timers.
(error (funcall type-error err)))))
(when (and (processp candidates) (not candidate-proc))
(warn "Candidates function `%s' should be called in a `candidates-process' attribute"
@@ -2568,7 +2569,7 @@ is done on whole `helm-buffer' and not on current source."
;; Be sure helm-idle-delay is >
;; to helm-input-idle-delay
;; otherwise use value of helm-input-idle-delay
- ;; or 0.1 if == to 0.
+ ;; or 0.01 if == to 0.
(max helm-idle-delay helm-input-idle-delay 0.01) nil
'helm-process-delayed-sources delayed-sources preselect source)))
(helm-log "end update")))))