changeset 66551:e72e61aed95a

(vc-cvs-delete-file): Commit the file after removing it.
author André Spiegel <spiegel@gnu.org>
date Sun, 30 Oct 2005 11:08:41 +0000
parents b5d0e8180416
children fd827c9eda22
files lisp/vc-cvs.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/vc-cvs.el	Sun Oct 30 10:42:26 2005 +0000
+++ b/lisp/vc-cvs.el	Sun Oct 30 11:08:41 2005 +0000
@@ -452,7 +452,8 @@
 	(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."