diff options
author | André Spiegel <spiegel@gnu.org> | 2001-02-01 15:10:16 +0000 |
---|---|---|
committer | André Spiegel <spiegel@gnu.org> | 2001-02-01 15:10:16 +0000 |
commit | 633147f5a466d1155705046314518a01f606adb0 (patch) | |
tree | d2773cded62107e92ff81ef9ace4e1545e7a3000 /lisp/vc-cvs.el | |
parent | acc5b122f069f32773c372abef250cb3a6b10c7a (diff) | |
download | emacs-633147f5a466d1155705046314518a01f606adb0.tar.gz |
(vc-cvs-diff-switches): New customization option.
(vc-cvs-diff): Use it via vc-diff-switches-list.
Diffstat (limited to 'lisp/vc-cvs.el')
-rw-r--r-- | lisp/vc-cvs.el | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index 756dd91f73c..4ec9885d4ac 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.17 2001/01/25 21:02:37 sds Exp $ +;; $Id: vc-cvs.el,v 1.18 2001/01/29 19:12:40 sds Exp $ ;; This file is part of GNU Emacs. @@ -34,6 +34,7 @@ (defvar vc-register-switches) ; defined in "vc.el", used in `vc-cvs-register' (defvar vc-checkin-switches) ; defined in "vc.el", used in `vc-cvs-checkin' (defvar vc-checkout-switches) ; defined in "vc.el", used in `vc-cvs-checkout' + (autoload 'vc-diff-switches-list "vc") ; used in `vc-cvs-diff' (autoload 'vc-do-command "vc") ; used all over the place (autoload 'vc-trunk-p "vc") ; used in `vc-cvs-checkin' (autoload 'vc-resynch-buffer "vc")) ; used in `vc-cvs-retrieve-snapshot' @@ -54,6 +55,16 @@ A string or list of strings passed to the checkin program by :version "21.1" :group 'vc) +(defcustom vc-cvs-diff-switches nil + "*A string or list of strings specifying extra switches for cvs diff under VC." + :type '(choice (const :tag "None" nil) + (string :tag "Argument String") + (repeat :tag "Argument List" + :value ("") + string)) + :version "21.1" + :group 'vc) + (defcustom vc-cvs-header (or (cdr (assoc 'CVS vc-header-alist)) '("\$Id\$")) "*Header keywords to be inserted by `vc-insert-headers'." :version "21.1" @@ -494,10 +505,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 (if (listp diff-switches) - diff-switches - (list diff-switches)))) + (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) |