Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
10aa933d
Commit
10aa933d
authored
Nov 16, 1995
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(vc-locking-user): In CVS case, convert user number to a string.
parent
27116657
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
lisp/vc-hooks.el
lisp/vc-hooks.el
+4
-1
No files found.
lisp/vc-hooks.el
View file @
10aa933d
...
...
@@ -608,7 +608,10 @@ For CVS, the full name of CVS/Entries is returned."
(
and
(
equal
(
vc-file-getprop
file
'vc-checkout-time
)
(
nth
5
(
file-attributes
file
)))
(
vc-file-setprop
file
'vc-locking-user
'none
))
(
vc-file-setprop
file
'vc-locking-user
(
vc-file-owner
file
))))
(
let
((
locker
(
vc-file-owner
file
)))
(
vc-file-setprop
file
'vc-locking-user
(
if
(
stringp
locker
)
locker
(
format
"%d"
locker
))))))
((
eq
(
vc-backend
file
)
'RCS
)
(
let
(
p-lock
)
...
...
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