emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/async df6120a9a9 1/2: fix: replace incorrect function t


From: ELPA Syncer
Subject: [elpa] externals/async df6120a9a9 1/2: fix: replace incorrect function to test for process liveness
Date: Thu, 23 Mar 2023 02:57:29 -0400 (EDT)

branch: externals/async
commit df6120a9a905a5aa922b817dc84fe48205330ee5
Author: Matus Goljer <matus.goljer@gmail.com>
Commit: Matus Goljer <matus.goljer@gmail.com>

    fix: replace incorrect function to test for process liveness
---
 async.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/async.el b/async.el
index aa0ccaba0c..e181773d9f 100644
--- a/async.el
+++ b/async.el
@@ -411,7 +411,7 @@ working directory."
     (set-process-sentinel
      (get-buffer-process buf-err)
      (lambda (proc _change)
-       (unless (or async-debug (buffer-live-p proc))
+       (unless (or async-debug (process-live-p proc))
          (kill-buffer (process-buffer proc)))))
     (with-current-buffer buf
       (set (make-local-variable 'async-callback) finish-func)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]