[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/vc-cvs.el,v
From: |
Dan Nicolaescu |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/vc-cvs.el,v |
Date: |
Sat, 10 Nov 2007 05:22:20 +0000 |
CVSROOT: /cvsroot/emacs
Module name: emacs
Changes by: Dan Nicolaescu <dann> 07/11/10 05:22:18
Index: vc-cvs.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/vc-cvs.el,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -b -r1.92 -r1.93
--- vc-cvs.el 20 Oct 2007 01:07:52 -0000 1.92
+++ vc-cvs.el 10 Nov 2007 05:22:16 -0000 1.93
@@ -503,7 +503,7 @@
"Get change log associated with FILE."
(vc-cvs-command
buffer
- (if (and (vc-stay-local-p files) (fboundp 'start-process)) 'async 0)
+ (if (vc-stay-local-p files) 'async 0)
files "log"))
(defun vc-cvs-wash-log ()
@@ -514,8 +514,7 @@
(defun vc-cvs-diff (files &optional oldvers newvers buffer)
"Get a difference report using CVS between two revisions of FILE."
(let* ((async (and (not vc-disable-async-diff)
- (vc-stay-local-p files)
- (fboundp 'start-process)))
+ (vc-stay-local-p files)))
(status (apply 'vc-cvs-command (or buffer "*vc-diff*")
(if async 'async 1)
files "diff"
@@ -563,7 +562,7 @@
"Execute \"cvs annotate\" on FILE, inserting the contents in BUFFER.
Optional arg REVISION is a revision to annotate from."
(vc-cvs-command buffer
- (if (and (vc-stay-local-p file) (fboundp 'start-process))
+ (if (vc-stay-local-p file)
'async 0)
file "annotate"
(if revision (concat "-r" revision)))
- [Emacs-diffs] Changes to emacs/lisp/vc-cvs.el,v,
Dan Nicolaescu <=