]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-cvs-register-switches): Doc fix. Add t as option.
authorGlenn Morris <rgm@gnu.org>
Thu, 4 Dec 2008 07:00:43 +0000 (07:00 +0000)
committerGlenn Morris <rgm@gnu.org>
Thu, 4 Dec 2008 07:00:43 +0000 (07:00 +0000)
(vc-cvs-register): Doc fix.

lisp/vc-cvs.el

index a73d9a69022326dede6b1387522671ec2ae40925..fec6e2f7a584ab0bbf1935fe43e11f0fb07a01ab 100644 (file)
   :group 'vc)
 
 (defcustom vc-cvs-register-switches nil
-  "Extra switches for registering a file into CVS.
+  "Switches for registering a file into CVS.
 A string or list of strings passed to the checkin program by
-\\[vc-register]."
-  :type '(choice (const :tag "None" nil)
+\\[vc-register].  If nil, use the value of `vc-register-switches'.
+If t, use no switches."
+  :type '(choice (const :tag "Unspecified" nil)
+                (const :tag "None" t)
                 (string :tag "Argument String")
-                (repeat :tag "Argument List"
-                        :value ("")
-                        string))
+                (repeat :tag "Argument List" :value ("") string))
   :version "21.1"
   :group 'vc)
 
@@ -273,13 +273,11 @@ committed and support display of sticky tags."
 ;;; State-changing functions
 ;;;
 
-;; FIXME doc is wrong re switches.
 (defun vc-cvs-register (files &optional rev comment)
   "Register FILES into the CVS version-control system.
 COMMENT can be used to provide an initial description of FILES.
-
-`vc-register-switches' and `vc-cvs-register-switches' are passed to
-the CVS command (in that order)."
+Passes either `vc-cvs-register-switches' or `vc-register-switches'
+to the CVS command."
   ;; Register the directories if needed.
   (let (dirs)
     (dolist (file files)