aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndré Spiegel2005-10-30 11:08:41 +0000
committerAndré Spiegel2005-10-30 11:08:41 +0000
commitbd25cb265f4b2415237f24555fc184782ba4a750 (patch)
treef54ed914a553e206531dda8302e1af90bf66c71f
parent5e7ae3bddff6ed908aa59c72b2593488011c8284 (diff)
downloademacs-bd25cb265f4b2415237f24555fc184782ba4a750.tar.gz
emacs-bd25cb265f4b2415237f24555fc184782ba4a750.zip
(vc-cvs-delete-file): Commit the file after removing it.
-rw-r--r--lisp/vc-cvs.el3
1 files changed, 2 insertions, 1 deletions
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."
452 (message "Checking out %s...done" filename))))) 452 (message "Checking out %s...done" filename)))))
453 453
454(defun vc-cvs-delete-file (file) 454(defun vc-cvs-delete-file (file)
455 (vc-cvs-command nil 0 file "remove" "-f")) 455 (vc-cvs-command nil 0 file "remove" "-f")
456 (vc-cvs-command nil 0 file "commit" "-mRemoved."))
456 457
457(defun vc-cvs-revert (file &optional contents-done) 458(defun vc-cvs-revert (file &optional contents-done)
458 "Revert FILE to the version it was based on." 459 "Revert FILE to the version it was based on."