From: André Spiegel Date: Sun, 30 Oct 2005 11:08:41 +0000 (+0000) Subject: (vc-cvs-delete-file): Commit the file after removing it. X-Git-Tag: emacs-pretest-22.0.90~6191 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bd25cb265f4b2415237f24555fc184782ba4a750;p=emacs.git (vc-cvs-delete-file): Commit the file after removing it. --- diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index cf661f62768..51d4174b40f 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el @@ -452,7 +452,8 @@ REV is the revision to check out into WORKFILE." (message "Checking out %s...done" filename))))) (defun vc-cvs-delete-file (file) - (vc-cvs-command nil 0 file "remove" "-f")) + (vc-cvs-command nil 0 file "remove" "-f") + (vc-cvs-command nil 0 file "commit" "-mRemoved.")) (defun vc-cvs-revert (file &optional contents-done) "Revert FILE to the version it was based on."