diff options
author | Paul Eggert <eggert@twinsun.com> | 1993-09-08 19:06:01 +0000 |
---|---|---|
committer | Paul Eggert <eggert@twinsun.com> | 1993-09-08 19:06:01 +0000 |
commit | fd6217ac0c51fa52d4d0cd5da2aff1a38abbea77 (patch) | |
tree | 1e7237ce27e9bf8859c0f69b775b0dc08057a324 /lisp/vc.el | |
parent | 61c3ce6288175422c805704d3a1fed70021f3ff7 (diff) | |
download | emacs-fd6217ac0c51fa52d4d0cd5da2aff1a38abbea77.tar.gz |
(vc-backend-steal): Fix typo when invoking the 'rcs' command
to steal the lock.
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 205bc266d0d..d0f7d773e1d 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -1498,7 +1498,7 @@ Return nil if there is no such person." (vc-do-command 0 "unget" file "-n" (if rev (concat "-r" rev))) (vc-do-command 0 "get" file "-g" (if rev (concat "-r" rev))) ) - (vc-do-command 0 "rcs" "-M" (concat "-u" rev) (concat "-l" rev) file)) + (vc-do-command 0 "rcs" file "-M" (concat "-u" rev) (concat "-l" rev))) (vc-file-setprop file 'vc-locking-user (user-login-name)) (message "Stealing lock on %s...done" file) ) |