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
bbd59337
Commit
bbd59337
authored
Dec 26, 2002
by
André Spiegel
Browse files
(vc-sccs-checkout): Handle t argument for REV.
parent
a3294a80
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lisp/vc-sccs.el
lisp/vc-sccs.el
+4
-2
No files found.
lisp/vc-sccs.el
View file @
bbd59337
...
...
@@ -5,7 +5,7 @@
;; Author: FSF (see vc.el for full credits)
;; Maintainer: Andre Spiegel <spiegel@gnu.org>
;; $Id: vc-sccs.el,v 1.1
8
2002/11/1
2
1
9:50:54 rost
Exp $
;; $Id: vc-sccs.el,v 1.1
9
2002/11/1
3
1
2:37:58 spiegel
Exp $
;; This file is part of GNU Emacs.
...
...
@@ -242,7 +242,9 @@ locked. REV is the revision to check out."
;; the file in the right place.
(
setq
default-directory
(
file-name-directory
file
))
(
and
rev
(
string=
rev
""
)
(
setq
rev
nil
))
(
and
rev
(
or
(
string=
rev
""
)
(
not
(
stringp
rev
)))
(
setq
rev
nil
))
(
apply
'vc-do-command
nil
0
"get"
(
vc-name
file
)
(
if
editable
"-e"
)
(
and
rev
(
concat
"-r"
(
vc-sccs-lookup-triple
file
rev
)))
...
...
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