comparison lisp/vc-cvs.el @ 93867:520490ae1b9a

* 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.
author Dan Nicolaescu <dann@ics.uci.edu>
date Tue, 08 Apr 2008 15:59:35 +0000
parents 3afeea9a48a3
children c024d26a0a5d
comparison
equal deleted inserted replaced
93866:1f769203aa6c 93867:520490ae1b9a
486 (message "Merging changes into %s...done" file)))) 486 (message "Merging changes into %s...done" file))))
487 487
488 (defun vc-cvs-modify-change-comment (files rev comment) 488 (defun vc-cvs-modify-change-comment (files rev comment)
489 "Modify the change comments for FILES on a specified REV. 489 "Modify the change comments for FILES on a specified REV.
490 Will fail unless you have administrative privileges on the repo." 490 Will fail unless you have administrative privileges on the repo."
491 (vc-cvs-command nil 0 files "rcs" (concat "-m" comment ":" rev))) 491 (vc-cvs-command nil 0 files "admin" (concat "-m" rev ":" comment)))
492 492
493 ;;; 493 ;;;
494 ;;; History functions 494 ;;; History functions
495 ;;; 495 ;;;
496 496