diff options
author | André Spiegel <spiegel@gnu.org> | 2000-09-19 13:58:56 +0000 |
---|---|---|
committer | André Spiegel <spiegel@gnu.org> | 2000-09-19 13:58:56 +0000 |
commit | c13809cf28e06ed04b8794ee6b0dccd0789dae90 (patch) | |
tree | 43bd73e93422b833e19d9dec3fb17f287493f80e /lisp/vc.el | |
parent | c113de23613952ed67a3bca79363b30ab7e406c3 (diff) | |
download | emacs-c13809cf28e06ed04b8794ee6b0dccd0789dae90.tar.gz |
(vc-revert-buffer): Set vc-checkout-time correctly.
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 081c232243a..836495f5899 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -2103,7 +2103,7 @@ use \\[universal-argument] \\[vc-next-action] to do so." file (vc-call revert file) `((vc-state up-to-date) - (vc-checkout-time (nth 5 (file-attributes file))))) + (vc-checkout-time ,(nth 5 (file-attributes file))))) (vc-resynch-buffer file t t) (message "Reverting %s...done" file))) |