emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/vc.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/vc.el
Date: Tue, 29 Mar 2005 10:30:42 -0500

Index: emacs/lisp/vc.el
diff -c emacs/lisp/vc.el:1.390 emacs/lisp/vc.el:1.391
*** emacs/lisp/vc.el:1.390      Sun Feb 27 18:38:08 2005
--- emacs/lisp/vc.el    Tue Mar 29 15:30:39 2005
***************
*** 1,7 ****
  ;;; vc.el --- drive a version-control system from within Emacs
  
  ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
! ;;   2000, 2001, 2003, 2004  Free Software Foundation, Inc.
  
  ;; Author:     FSF (see below for full credits)
  ;; Maintainer: Andre Spiegel <address@hidden>
--- 1,7 ----
  ;;; vc.el --- drive a version-control system from within Emacs
  
  ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
! ;;   2000, 2001, 2003, 2004, 2005  Free Software Foundation, Inc.
  
  ;; Author:     FSF (see below for full credits)
  ;; Maintainer: Andre Spiegel <address@hidden>
***************
*** 962,969 ****
            ;; start-process does not support remote execution
            (setq okstatus nil))
        (if (eq okstatus 'async)
!           (let ((proc (apply 'start-process command (current-buffer) command
!                              squeezed)))
                (unless (active-minibuffer-window)
                  (message "Running %s in the background..." command))
              ;;(set-process-sentinel proc (lambda (p msg) (delete-process p)))
--- 962,971 ----
            ;; start-process does not support remote execution
            (setq okstatus nil))
        (if (eq okstatus 'async)
!           (let ((proc
!                  (let ((process-connection-type nil))
!                    (apply 'start-process command (current-buffer) command
!                           squeezed))))
                (unless (active-minibuffer-window)
                  (message "Running %s in the background..." command))
              ;;(set-process-sentinel proc (lambda (p msg) (delete-process p)))




reply via email to

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