aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1992-10-05 22:03:53 +0000
committerRichard M. Stallman <[email protected]>1992-10-05 22:03:53 +0000
commit73ce90464c4fd1715b9f9d20f60798225ea27b1f (patch)
tree4b4fcb25b5ffa9d6a88e5ec9e14aa4a6f944ee4a /lisp/vc.el
parentad0146295eb52d69959ee4ca0775f935e4525043 (diff)
(vc-backend-steal): Put filename after options in rcs commands.
Diffstat (limited to 'lisp/vc.el')
-rw-r--r--lisp/vc.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index e89c973511..d72e2a55d2 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -5,7 +5,7 @@
;; Author: Eric S. Raymond <[email protected]>
;; Version: 4.0
-;; $Id: vc.el,v 1.10 1992/10/05 05:49:27 roland Exp rms $
+;; $Id: vc.el,v 1.11 1992/10/05 21:09:26 rms Exp rms $
;; This file is part of GNU Emacs.
@@ -1102,8 +1102,8 @@ Return nil if there is no such person."
(vc-do-command 0 "get" file "-g" (if rev (concat "-r" rev)))
)
(progn
- (vc-do-command 0 "rcs" file "-M" (concat "-u" rev))
- (vc-do-command 0 "rcs" file (concat "-l" rev))
+ (vc-do-command 0 "rcs" "-M" (concat "-u" rev) file)
+ (vc-do-command 0 "rcs" (concat "-l" rev) file)
)
(vc-file-setprop file 'vc-locking-user (user-login-name))
(message "Stealing lock on %s...done" file)