branch: elpa/helm
commit e15fea95457023462fc155336948a7c1c808f5cc
Author: Thierry Volpiatto <thie...@posteo.net>
Commit: Thierry Volpiatto <thie...@posteo.net>

    Fix id-utils sentinel
    
    Check (process-get process 'reach-limit)
---
 helm-id-utils.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/helm-id-utils.el b/helm-id-utils.el
index 0146976236..53f79743dd 100644
--- a/helm-id-utils.el
+++ b/helm-id-utils.el
@@ -53,8 +53,9 @@ MacPorts to install id-utils, it should be `gid32'."
     (set (make-local-variable 'helm-grep-last-cmd-line) cmd)
     (prog1 proc
       (set-process-sentinel
-       proc (lambda (_process event)
-              (when (string= event "finished\n")
+       proc (lambda (process event)
+              (when (or (string= event "finished\n")
+                        (process-get process 'reach-limit))
                 (helm-maybe-show-help-echo)
                 (with-helm-window
                   (setq mode-line-format

Reply via email to