]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-cvs-delete-file): Commit the file after removing it.
authorAndré Spiegel <spiegel@gnu.org>
Sun, 30 Oct 2005 11:08:41 +0000 (11:08 +0000)
committerAndré Spiegel <spiegel@gnu.org>
Sun, 30 Oct 2005 11:08:41 +0000 (11:08 +0000)
lisp/vc-cvs.el

index cf661f62768d8cf12bee56085a917a3fc51d7241..51d4174b40fd86215cb108e8b9e6cee11055e0cf 100644 (file)
@@ -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."