Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1e55ee73
Commit
1e55ee73
authored
Dec 04, 2008
by
Glenn Morris
Browse files
(vc-rcs-register-switches): Doc fix. Add t as option.
(vc-rcs-register): Doc fix.
parent
891eb9c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
12 deletions
+10
-12
lisp/vc-rcs.el
lisp/vc-rcs.el
+10
-12
No files found.
lisp/vc-rcs.el
View file @
1e55ee73
...
...
@@ -45,14 +45,14 @@ If nil, VC itself computes this value when it is first needed."
:group
'vc
)
(
defcustom
vc-rcs-register-switches
nil
"Extra switches for registering a file in RCS.
A string or list of strings. These are passed to the checkin program
by \\[vc-rcs-register]."
:type
'
(
choice
(
const
:tag
"None"
nil
)
"Switches for registering a file in RCS.
A string or list of strings passed to the checkin program by
\\[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
)
...
...
@@ -262,17 +262,15 @@ When VERSION is given, perform check for that version."
(
defun
vc-rcs-create-repo
()
"Create a new RCS repository."
;; RCS is totally file-oriented, so all we have to do is make the directory
;; RCS is totally file-oriented, so all we have to do is make the directory
.
(
make-directory
"RCS"
))
;; FIXME doc is wrong re switches.
(
defun
vc-rcs-register
(
files
&optional
rev
comment
)
"Register FILES into the RCS version-control system.
REV is the optional revision number for the files. COMMENT can be used
to provide an initial description for each FILES.
`vc-register-switches' and `vc-rcs-register-switches' are passed to
the RCS command (in that order).
Passes either `vc-rcs-register-switches' or `vc-register-switches'
to the RCS command.
Automatically retrieve a read-only version of the file with keywords
expanded if `vc-keep-workfiles' is non-nil, otherwise, delete the workfile."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment