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-arch.el | |
parent | 1adf362df743044230329213bf68ff1e3acdd5e4 (diff) | |
download | emacs-fe1919ab8660374570cb6e1a7763496711b14483.tar.gz |
* 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-arch.el')
-rw-r--r-- | lisp/vc-arch.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-arch.el b/lisp/vc-arch.el index 3c4e4b4d791..ecaee28c6d2 100644 --- a/lisp/vc-arch.el +++ b/lisp/vc-arch.el @@ -395,7 +395,7 @@ Return non-nil if FILE is unchanged." (setq newvers nil)) (if newvers (error "Diffing specific revisions not implemented") - (let* ((async (and (not vc-disable-async-diff) (fboundp 'start-process))) + (let* ((async (not vc-disable-async-diff)) ;; Run the command from the root dir. (default-directory (vc-arch-root file)) (status |