From bd25cb265f4b2415237f24555fc184782ba4a750 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Spiegel?= Date: Sun, 30 Oct 2005 11:08:41 +0000 Subject: [PATCH] (vc-cvs-delete-file): Commit the file after removing it. --- lisp/vc-cvs.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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." -- 2.39.5