From 31dcede0c7fc852d6f05bda476a99bb37661371b Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 19 Apr 2013 00:09:08 -0400 Subject: [PATCH] * lisp/vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg. --- lisp/ChangeLog | 4 ++++ lisp/vc/vc-dispatcher.el | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bc409171fb..97ee66dcc0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-04-19 Stefan Monnier + + * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg. + 2013-04-19 Fabián Ezequiel Gallina New faster Imenu implementation (bug#14058). diff --git a/lisp/vc/vc-dispatcher.el b/lisp/vc/vc-dispatcher.el index b03619e03d..ed61adec1f 100644 --- a/lisp/vc/vc-dispatcher.el +++ b/lisp/vc/vc-dispatcher.el @@ -329,7 +329,9 @@ case, and the process object in the asynchronous case." command squeezed)))) (when vc-command-messages (message "Running %s in background..." full-command)) - ;;(set-process-sentinel proc (lambda (p msg) (delete-process p))) + ;; Get rid of the default message insertion, in case we don't + ;; set a sentinel explicitly. + (set-process-sentinel proc #'ignore) (set-process-filter proc 'vc-process-filter) (setq status proc) (when vc-command-messages -- 2.20.1