diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-11-19 15:10:57 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-11-19 15:10:57 +0000 |
commit | 3c42cc640b4bfd6b76bc1c277171b623df5bbf46 (patch) | |
tree | edfbfc3da15d6ec2f406939cac1e72f19509a2e3 /lisp/vc.el | |
parent | 3249f234b8faeff7a0c704fef8969458e74f9c86 (diff) | |
download | emacs-3c42cc640b4bfd6b76bc1c277171b623df5bbf46.tar.gz |
Update annotation-related comments.
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 5aac27e31a4..14209b3afed 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -321,11 +321,13 @@ ;; vc-BACKEND-diff. The default implementation does an explicit tree ;; walk, calling vc-BACKEND-diff for each individual file. ;; -;; - annotate-command (file buf rev) +;; - annotate-command (file buf &optional rev) ;; -;; If this function is provided, it should produce an annotated version -;; of FILE in BUF, relative to version REV. This is currently only -;; implemented for CVS, using the `cvs annotate' command. +;; If this function is provided, it should produce an annotated display +;; of FILE in BUF, relative to version REV. Annotation means each line +;; of FILE displayed is prefixed with version information associated with +;; its addition (deleted lines leave no history) and that the text of the +;; file is fontified according to age. ;; ;; - annotate-time () ;; @@ -645,7 +647,6 @@ List of factors, used to expand/compress the time scale. See `vc-annotate'." :type '(repeat number) :group 'vc) -;; vc-annotate functionality (CVS only). (defvar vc-annotate-mode-map (let ((m (make-sparse-keymap))) (define-key m [menu-bar] (make-sparse-keymap "VC-Annotate")) |