emacs-31 6f992eaa49b: vc--count-outgoing: Set process query on exit flag to nil

Sean Whitton <[email protected]> Thu, 23 Jul 2026 10:36:54 -0400 (EDT)
Newsgroups gmane.emacs.diffs
Message-ID <[email protected]>
branch: emacs-31
commit 6f992eaa49b27c46e850a0ded995de4284381348
Author: Sean Whitton <[email protected]>
Commit: Sean Whitton <[email protected]>

    vc--count-outgoing: Set process query on exit flag to nil
    
    * lisp/vc/vc.el (vc--count-outgoing): Set process query on exit
    flag to nil (bug#81454).  Do not merge to master.
---
 lisp/vc/vc.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el
index 861b98192aa..2e4aa014181 100644
--- a/lisp/vc/vc.el
+++ b/lisp/vc/vc.el
@@ -4727,6 +4727,7 @@ can be a remote branch name."
       (vc-incoming-outgoing-internal backend nil
                                      (current-buffer) 'log-outgoing))
     (let ((proc (get-buffer-process (current-buffer))))
+      (set-process-query-on-exit-flag proc nil)
       (while (accept-process-output proc)))
     (how-many log-view-message-re)))