aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-12-03 07:38:25 +0000
committerGlenn Morris2008-12-03 07:38:25 +0000
commite5dddf980abf0f8175134644b1643319219361d4 (patch)
tree0c28c398f945743e3f9565deaf3179b26cf5d8a3
parent1d9d1fcc3f6511597806c7e30146f1efac3e9d2c (diff)
downloademacs-e5dddf980abf0f8175134644b1643319219361d4.tar.gz
emacs-e5dddf980abf0f8175134644b1643319219361d4.zip
Set maintainer as FSF rather than "None".
(vc-mcvs-diff-switches): Doc fix.
-rw-r--r--lisp/vc-mcvs.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/vc-mcvs.el b/lisp/vc-mcvs.el
index fcfda057f0b..65d9043850d 100644
--- a/lisp/vc-mcvs.el
+++ b/lisp/vc-mcvs.el
@@ -1,9 +1,10 @@
1;;; vc-mcvs.el --- VC backend for the Meta-CVS version-control system 1;;; vc-mcvs.el --- VC backend for the Meta-CVS version-control system
2 2
3;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 3;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
4;; Free Software Foundation, Inc.
4 5
5;; Author: FSF (see vc.el for full credits) 6;; Author: FSF (see vc.el for full credits)
6;; Maintainer: None 7;; Maintainer: FSF
7 8
8;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
9 10
@@ -64,9 +65,7 @@
64 "Global switches to pass to any Meta-CVS command." 65 "Global switches to pass to any Meta-CVS command."
65 :type '(choice (const :tag "None" nil) 66 :type '(choice (const :tag "None" nil)
66 (string :tag "Argument String") 67 (string :tag "Argument String")
67 (repeat :tag "Argument List" 68 (repeat :tag "Argument List" :value ("") string))
68 :value ("")
69 string))
70 :version "22.1" 69 :version "22.1"
71 :group 'vc) 70 :group 'vc)
72 71
@@ -83,12 +82,12 @@ A string or list of strings passed to the checkin program by
83 :group 'vc) 82 :group 'vc)
84 83
85(defcustom vc-mcvs-diff-switches nil 84(defcustom vc-mcvs-diff-switches nil
86 "A string or list of strings specifying extra switches for cvs diff under VC." 85 "String or list of strings specifying switches for Meta-CVS diff under VC.
87 :type '(choice (const :tag "None" nil) 86If nil, use the value of `vc-diff-switches'. If t, use no switches."
87 :type '(choice (const :tag "Unspecified" nil)
88 (const :tag "None" t)
88 (string :tag "Argument String") 89 (string :tag "Argument String")
89 (repeat :tag "Argument List" 90 (repeat :tag "Argument List" :value ("") string))
90 :value ("")
91 string))
92 :version "22.1" 91 :version "22.1"
93 :group 'vc) 92 :group 'vc)
94 93
@@ -184,6 +183,7 @@ This is only meaningful if you don't use the implicit checkout model
184;;; State-changing functions 183;;; State-changing functions
185;;; 184;;;
186 185
186;; FIXME the doc is wrong re switches.
187(defun vc-mcvs-register (files &optional rev comment) 187(defun vc-mcvs-register (files &optional rev comment)
188 "Register FILES into the Meta-CVS version-control system. 188 "Register FILES into the Meta-CVS version-control system.
189COMMENT can be used to provide an initial description of FILE. 189COMMENT can be used to provide an initial description of FILE.