From: Eric S. Raymond Date: Fri, 2 May 2008 03:30:10 +0000 (+0000) Subject: Don't commit right after deletion. X-Git-Tag: emacs-pretest-23.0.90~5895 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=105cac2d47375f84c695a28e5dd816821f81cf3b;p=emacs.git Don't commit right after deletion. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 769f3898ac9..7cd6ee7e3bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -25,6 +25,8 @@ * vc.el (vc-default-dired-state): Change needs-patch state to needs-update, since the name now shows up in dir-status listings and was somewhat misleading. + * vc.el (vc-cvs-delete-file) Don't do a "cvs commit" immediately after + removing the file. 2008-05-01 Sam Steingold diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index bd92fab3326..f935bf9a486 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el @@ -416,8 +416,7 @@ REV is the revision to check out." (message "Checking out %s...done" file)) (defun vc-cvs-delete-file (file) - (vc-cvs-command nil 0 file "remove" "-f") - (vc-cvs-command nil 0 file "commit" "-mRemoved.")) + (vc-cvs-command nil 0 file "remove" "-f")) (defun vc-cvs-revert (file &optional contents-done) "Revert FILE to the working revision on which it was based." diff --git a/lisp/vc.el b/lisp/vc.el index 4aefc21530a..cdaecada65b 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -660,9 +660,6 @@ ;; - do not default to RCS anymore when the current directory is not ;; controlled by any VCS and the user does C-x v v ;; -;; - vc-cvs-delete-file should not do a "cvs commit" immediately after -;; removing the file. -;; ;; - vc-create-snapshot and vc-retrieve-snapshot should update the ;; buffers that might be visiting the affected files. ;;