diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-11-03 10:22:39 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-11-03 10:22:39 +0000 |
commit | f36e4afe479b3ea32dbfaa354392d0031e21ca1f (patch) | |
tree | b052ee7feacef8ffc2a28339d6cd451aa913a317 /lisp/vc.el | |
parent | 98a864f0240b576fbb881d08b6109bf96fe5aea5 (diff) | |
download | emacs-f36e4afe479b3ea32dbfaa354392d0031e21ca1f.tar.gz |
(vc-annotate-display-autoscale): Add prefix-arg
spec in `interactive' form, and mention it in the docstring.
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 15d0258e85d..3301c9c03f0 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -2896,9 +2896,9 @@ if present. The current time is used as the offset." (defun vc-annotate-display-autoscale (&optional full) "Highlight the output of \\[vc-annotate] using an autoscaled color map. Autoscaling means that the map is scaled from the current time to the -oldest annotation in the buffer, or, with argument FULL non-nil, to +oldest annotation in the buffer, or, with prefix argument FULL, to cover the range from the oldest annotation to the newest." - (interactive) + (interactive "P") (let ((newest 0.0) (oldest 999999.) ;Any CVS users at the founding of Rome? (current (vc-annotate-convert-time (current-time))) |