diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 2008-05-02 03:30:10 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 2008-05-02 03:30:10 +0000 |
commit | 105cac2d47375f84c695a28e5dd816821f81cf3b (patch) | |
tree | fb29c0d8ede47b5a2cb521f5a03485bfc18b2261 /lisp/vc-cvs.el | |
parent | cd49dc20d31357f5629f5cbba54186e2409a817f (diff) | |
download | emacs-105cac2d47375f84c695a28e5dd816821f81cf3b.tar.gz |
Don't commit right after deletion.
Diffstat (limited to 'lisp/vc-cvs.el')
-rw-r--r-- | lisp/vc-cvs.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index bd92fab3326..f935bf9a486 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el @@ -416,8 +416,7 @@ REV is the revision to check out." (message "Checking out %s...done" file)) (defun vc-cvs-delete-file (file) - (vc-cvs-command nil 0 file "remove" "-f") - (vc-cvs-command nil 0 file "commit" "-mRemoved.")) + (vc-cvs-command nil 0 file "remove" "-f")) (defun vc-cvs-revert (file &optional contents-done) "Revert FILE to the working revision on which it was based." |