[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm bdd060c281 1/3: Don't kill process buffer between two
|
From: |
ELPA Syncer |
|
Subject: |
[nongnu] elpa/helm bdd060c281 1/3: Don't kill process buffer between two calls of |
|
Date: |
Wed, 8 Nov 2023 13:00:35 -0500 (EST) |
branch: elpa/helm
commit bdd060c281949a078d4c22bab53a46a81c92f0bb
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Don't kill process buffer between two calls of
helm-locate-lib-get-summary and simplify accept-process-output call.
---
helm-lib.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/helm-lib.el b/helm-lib.el
index 730d038387..e5c6ccfd5a 100644
--- a/helm-lib.el
+++ b/helm-lib.el
@@ -1773,8 +1773,8 @@ Directories expansion is not supported."
(replace-regexp-in-string
"\n" ""
(buffer-string)))
- (kill-buffer)))))
- (while (accept-process-output proc 0.5 nil t))
+ (erase-buffer)))))
+ (while (accept-process-output proc))
(if (string= output "")
"Not documented"
output)))