diff options
author | Andreas Schwab <schwab@suse.de> | 1998-04-15 09:48:04 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-04-15 09:48:04 +0000 |
commit | ae4c702967955c45c1f34620628874cf204d0a60 (patch) | |
tree | e0ee63fe07b5579d7d9f1964b3014947d56fac4f /lisp | |
parent | 64e3c718c6d33aed74e654a2ab97a8016e6bd64a (diff) | |
download | emacs-ae4c702967955c45c1f34620628874cf204d0a60.tar.gz emacs-ae4c702967955c45c1f34620628874cf204d0a60.tar.bz2 emacs-ae4c702967955c45c1f34620628874cf204d0a60.zip |
(vc-backend-revert): Fix missing argument for
vc-file-setprop.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/vc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index dc3233cfa33..75de4586233 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -5,7 +5,7 @@ ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> ;; Maintainer: Andre Spiegel <spiegel@inf.fu-berlin.de> -;; $Id: vc.el,v 1.220 1998/04/09 13:45:44 spiegel Exp spiegel $ +;; $Id: vc.el,v 1.221 1998/04/14 12:38:25 spiegel Exp $ ;; This file is part of GNU Emacs. @@ -2682,7 +2682,7 @@ THRESHOLD, nil otherwise" ;; Checking out explicit versions is not supported under SCCS, yet. ;; We always "revert" to the latest version; therefore ;; vc-workfile-version is cleared here so that it gets recomputed. - (vc-file-setprop 'vc-workfile-version nil)) + (vc-file-setprop file 'vc-workfile-version nil)) ;; RCS (vc-do-command nil 0 "co" file 'MASTER "-f" (concat "-u" (vc-workfile-version file))) |