summaryrefslogtreecommitdiff
path: root/lisp/vc-cvs.el
diff options
context:
space:
mode:
authorAndré Spiegel <spiegel@gnu.org>2002-02-25 22:03:24 +0000
committerAndré Spiegel <spiegel@gnu.org>2002-02-25 22:03:24 +0000
commitdf8e0a91a1760b9849eafe212295b94f1054e417 (patch)
tree4a5c507fd78103c2e33e46041b5d6618e26da649 /lisp/vc-cvs.el
parent4e5f52e5b97766565702e55c4eea6b482e569bff (diff)
downloademacs-df8e0a91a1760b9849eafe212295b94f1054e417.tar.gz
(vc-cvs-diff, vc-cvs-diff-tree): Use consistent parameter format for
vc-diff-switches-list.
Diffstat (limited to 'lisp/vc-cvs.el')
-rw-r--r--lisp/vc-cvs.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el
index 88805110cc9..6516b130180 100644
--- a/lisp/vc-cvs.el
+++ b/lisp/vc-cvs.el
@@ -5,7 +5,7 @@
;; Author: FSF (see vc.el for full credits)
;; Maintainer: Andre Spiegel <spiegel@gnu.org>
-;; $Id: vc-cvs.el,v 1.31 2002/01/08 20:00:19 spiegel Exp $
+;; $Id: vc-cvs.el,v 1.33 2002/02/21 20:16:47 spiegel Exp $
;; This file is part of GNU Emacs.
@@ -559,7 +559,7 @@ The changes are between FIRST-VERSION and SECOND-VERSION."
(defun vc-cvs-diff (file &optional oldvers newvers)
"Get a difference report using CVS between two versions of FILE."
- (let (options status (diff-switches-list (vc-diff-switches-list cvs)))
+ (let (options status (diff-switches-list (vc-diff-switches-list 'CVS)))
(if (string= (vc-workfile-version file) "0")
;; This file is added but not yet committed; there is no master file.
(if (or oldvers newvers)
@@ -605,7 +605,7 @@ The changes are between FIRST-VERSION and SECOND-VERSION."
(apply 'vc-do-command "*vc-diff*" 1 "cvs" nil "diff"
(and rel1 (concat "-r" rel1))
(and rel2 (concat "-r" rel2))
- (vc-diff-switches-list cvs))))))
+ (vc-diff-switches-list 'CVS))))))
(defun vc-cvs-annotate-command (file buffer &optional version)
"Execute \"cvs annotate\" on FILE, inserting the contents in BUFFER.