diff options
| author | Glenn Morris | 2008-12-03 07:40:53 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-12-03 07:40:53 +0000 |
| commit | 3edf7a64eb0ff681f750861c2e1ad08c65426473 (patch) | |
| tree | e80152bf9a0a7b77ffdf81b5955f7d899d99ece2 | |
| parent | 69db9cd21f25b791b61c5689ec9ed1bd471e9806 (diff) | |
| download | emacs-3edf7a64eb0ff681f750861c2e1ad08c65426473.tar.gz emacs-3edf7a64eb0ff681f750861c2e1ad08c65426473.zip | |
(vc-sccs-diff-switches): Doc fix. Add t as option.
(vc-sccs-register-switches): Remove leading * from doc.
| -rw-r--r-- | lisp/vc-sccs.el | 14 |
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 @@ | |||
| 45 | ;; :group 'vc) | 45 | ;; :group 'vc) |
| 46 | 46 | ||
| 47 | (defcustom vc-sccs-register-switches nil | 47 | (defcustom vc-sccs-register-switches nil |
| 48 | "*Extra switches for registering a file in SCCS. | 48 | "Extra switches for registering a file in SCCS. |
| 49 | A string or list of strings passed to the checkin program by | 49 | A string or list of strings passed to the checkin program by |
| 50 | \\[vc-sccs-register]." | 50 | \\[vc-sccs-register]." |
| 51 | :type '(choice (const :tag "None" nil) | 51 | :type '(choice (const :tag "None" nil) |
| @@ -57,13 +57,12 @@ A string or list of strings passed to the checkin program by | |||
| 57 | :group 'vc) | 57 | :group 'vc) |
| 58 | 58 | ||
| 59 | (defcustom vc-sccs-diff-switches nil | 59 | (defcustom vc-sccs-diff-switches nil |
| 60 | "A string or list of strings specifying extra switches for `vcdiff', | 60 | "String or list of strings specifying switches for SCCS diff under VC. |
| 61 | the diff utility used for SCCS under VC." | 61 | If nil, use the value of `vc-diff-switches'. If t, use no switches." |
| 62 | :type '(choice (const :tag "None" nil) | 62 | :type '(choice (const :tag "Unspecified" nil) |
| 63 | (const :tag "None" t) | ||
| 63 | (string :tag "Argument String") | 64 | (string :tag "Argument String") |
| 64 | (repeat :tag "Argument List" | 65 | (repeat :tag "Argument List" :value ("") string)) |
| 65 | :value ("") | ||
| 66 | string)) | ||
| 67 | :version "21.1" | 66 | :version "21.1" |
| 68 | :group 'vc) | 67 | :group 'vc) |
| 69 | 68 | ||
| @@ -199,6 +198,7 @@ For a description of possible values, see `vc-check-master-templates'." | |||
| 199 | ;; SCCS is totally file-oriented, so all we have to do is make the directory | 198 | ;; SCCS is totally file-oriented, so all we have to do is make the directory |
| 200 | (make-directory "SCCS")) | 199 | (make-directory "SCCS")) |
| 201 | 200 | ||
| 201 | ;; FIXME doc is wrong re switches. | ||
| 202 | (defun vc-sccs-register (files &optional rev comment) | 202 | (defun vc-sccs-register (files &optional rev comment) |
| 203 | "Register FILES into the SCCS version-control system. | 203 | "Register FILES into the SCCS version-control system. |
| 204 | REV is the optional revision number for the file. COMMENT can be used | 204 | REV is the optional revision number for the file. COMMENT can be used |