Mercurial > emacs
changeset 1344:8d047d2d2592
(vc-backend-steal): Put filename after options in rcs commands.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 05 Oct 1992 22:03:53 +0000 |
parents | 9b5cb40cb6c8 |
children | 9596a1866aee |
files | lisp/vc.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/vc.el Mon Oct 05 21:09:26 1992 +0000 +++ b/lisp/vc.el Mon Oct 05 22:03:53 1992 +0000 @@ -5,7 +5,7 @@ ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> ;; 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 @@ (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)