diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-11-10 05:22:16 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-11-10 05:22:16 +0000 |
commit | fe1919ab8660374570cb6e1a7763496711b14483 (patch) | |
tree | 0a735d7121d863cc65e1250a9b084fc913b645b0 /lisp/vc-cvs.el | |
parent | 1adf362df743044230329213bf68ff1e3acdd5e4 (diff) | |
download | emacs-fe1919ab8660374570cb6e1a7763496711b14483.tar.gz emacs-fe1919ab8660374570cb6e1a7763496711b14483.tar.bz2 emacs-fe1919ab8660374570cb6e1a7763496711b14483.zip |
* vc.el (vc-diff-internal): Make the *vc-diff* buffer read only.
* vc-svn.el (vc-svn-print-log, vc-svn-diff):
* vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-annotate-command):
* vc-cvs.el (vc-cvs-print-log, vc-cvs-diff)
(vc-cvs-annotate-command):
* vc-arch.el (vc-arch-diff): Remove test to check if start-process
is bound, it always is.
Diffstat (limited to 'lisp/vc-cvs.el')
-rw-r--r-- | lisp/vc-cvs.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index 79a4263854d..d6573db9df2 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el @@ -503,7 +503,7 @@ The changes are between FIRST-REVISION and SECOND-REVISION." "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 @@ The changes are between FIRST-REVISION and SECOND-REVISION." (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 @@ The changes are between FIRST-REVISION and SECOND-REVISION." "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))) |