summaryrefslogtreecommitdiff
path: root/lisp/vc-sccs.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-12-03 07:40:53 +0000
committerGlenn Morris <rgm@gnu.org>2008-12-03 07:40:53 +0000
commit3edf7a64eb0ff681f750861c2e1ad08c65426473 (patch)
treee80152bf9a0a7b77ffdf81b5955f7d899d99ece2 /lisp/vc-sccs.el
parent69db9cd21f25b791b61c5689ec9ed1bd471e9806 (diff)
downloademacs-3edf7a64eb0ff681f750861c2e1ad08c65426473.tar.gz
(vc-sccs-diff-switches): Doc fix. Add t as option.
(vc-sccs-register-switches): Remove leading * from doc.
Diffstat (limited to 'lisp/vc-sccs.el')
-rw-r--r--lisp/vc-sccs.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/vc-sccs.el b/lisp/vc-sccs.el
index 8307def6c09..9adfaf28905 100644
--- a/lisp/vc-sccs.el
+++ b/lisp/vc-sccs.el
@@ -45,7 +45,7 @@
;; :group 'vc)
(defcustom vc-sccs-register-switches nil
- "*Extra switches for registering a file in SCCS.
+ "Extra switches for registering a file in SCCS.
A string or list of strings passed to the checkin program by
\\[vc-sccs-register]."
:type '(choice (const :tag "None" nil)
@@ -57,13 +57,12 @@ A string or list of strings passed to the checkin program by
:group 'vc)
(defcustom vc-sccs-diff-switches nil
- "A string or list of strings specifying extra switches for `vcdiff',
-the diff utility used for SCCS under VC."
- :type '(choice (const :tag "None" nil)
+ "String or list of strings specifying switches for SCCS diff under VC.
+If nil, use the value of `vc-diff-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)
@@ -199,6 +198,7 @@ For a description of possible values, see `vc-check-master-templates'."
;; SCCS is totally file-oriented, so all we have to do is make the directory
(make-directory "SCCS"))
+;; FIXME doc is wrong re switches.
(defun vc-sccs-register (files &optional rev comment)
"Register FILES into the SCCS version-control system.
REV is the optional revision number for the file. COMMENT can be used