aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2013-04-19 00:09:08 -0400
committerStefan Monnier2013-04-19 00:09:08 -0400
commit31dcede0c7fc852d6f05bda476a99bb37661371b (patch)
treeb04b4e96d46a1f08b6ad08f36ce5b5cb1ecd9376
parentadc3121366c4cc6d90b0122036bdfb0eb6308e3f (diff)
downloademacs-31dcede0c7fc852d6f05bda476a99bb37661371b.tar.gz
emacs-31dcede0c7fc852d6f05bda476a99bb37661371b.zip
* lisp/vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/vc/vc-dispatcher.el4
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bc409171fb2..97ee66dcc01 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
4
12013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org> 52013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
2 6
3 New faster Imenu implementation (bug#14058). 7 New faster Imenu implementation (bug#14058).
diff --git a/lisp/vc/vc-dispatcher.el b/lisp/vc/vc-dispatcher.el
index b03619e03d9..ed61adec1fe 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."
329 command squeezed)))) 329 command squeezed))))
330 (when vc-command-messages 330 (when vc-command-messages
331 (message "Running %s in background..." full-command)) 331 (message "Running %s in background..." full-command))
332 ;;(set-process-sentinel proc (lambda (p msg) (delete-process p))) 332 ;; Get rid of the default message insertion, in case we don't
333 ;; set a sentinel explicitly.
334 (set-process-sentinel proc #'ignore)
333 (set-process-filter proc 'vc-process-filter) 335 (set-process-filter proc 'vc-process-filter)
334 (setq status proc) 336 (setq status proc)
335 (when vc-command-messages 337 (when vc-command-messages