diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-04-08 15:59:35 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-04-08 15:59:35 +0000 |
commit | 031f1766297b61947d7b4b43327ad034150df532 (patch) | |
tree | 0e7cb3d67d2ba8481c33362fe18bc85cde458254 /lisp/vc-cvs.el | |
parent | 80e3310b378e05683a1fde3845499165640ac994 (diff) | |
download | emacs-031f1766297b61947d7b4b43327ad034150df532.tar.gz emacs-031f1766297b61947d7b4b43327ad034150df532.tar.bz2 emacs-031f1766297b61947d7b4b43327ad034150df532.zip |
* vc-rcs.el (vc-rcs-modify-change-comment):
* vc-cvs.el (vc-cvs-modify-change-comment): Fix argument order.
* log-view.el (log-view-mode-menu): Bind log-view-modify-change-comment.
Diffstat (limited to 'lisp/vc-cvs.el')
-rw-r--r-- | lisp/vc-cvs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index d17240e146a..e3ad094d557 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el @@ -488,7 +488,7 @@ The changes are between FIRST-REVISION and SECOND-REVISION." (defun vc-cvs-modify-change-comment (files rev comment) "Modify the change comments for FILES on a specified REV. Will fail unless you have administrative privileges on the repo." - (vc-cvs-command nil 0 files "rcs" (concat "-m" comment ":" rev))) + (vc-cvs-command nil 0 files "admin" (concat "-m" rev ":" comment))) ;;; ;;; History functions |