# HG changeset patch # User Richard M. Stallman # Date 718322633 0 # Node ID 8d047d2d2592c75659190f34307f617d40bffa05 # Parent 9b5cb40cb6c8a9fba9b83e78ab948ee69bfeaa7f (vc-backend-steal): Put filename after options in rcs commands. diff -r 9b5cb40cb6c8 -r 8d047d2d2592 lisp/vc.el --- 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 ;; 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)