aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/vc.el4
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b22332ef287..3652c68c4f6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12004-11-03 Thien-Thi Nguyen <ttn@gnu.org>
2
3 * vc.el (vc-annotate-display-autoscale): Add prefix-arg
4 spec in `interactive' form, and mention it in the docstring.
5
12004-11-02 Richard M. Stallman <rms@gnu.org> 62004-11-02 Richard M. Stallman <rms@gnu.org>
2 7
3 * emacs-lisp/elp.el (elp-instrument-function): 8 * emacs-lisp/elp.el (elp-instrument-function):
@@ -30,7 +35,7 @@
30 find-file-existing. Add "New File..." that calls find-file. 35 find-file-existing. Add "New File..." that calls find-file.
31 36
32 * diropen.pbm diropen.xpm: New files. 37 * diropen.pbm diropen.xpm: New files.
33 38
34 * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses 39 * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses
35 icon diropen. New tool bar item find-file-existing uses icon open. 40 icon diropen. New tool bar item find-file-existing uses icon open.
36 41
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."
2896(defun vc-annotate-display-autoscale (&optional full) 2896(defun vc-annotate-display-autoscale (&optional full)
2897 "Highlight the output of \\[vc-annotate] using an autoscaled color map. 2897 "Highlight the output of \\[vc-annotate] using an autoscaled color map.
2898Autoscaling means that the map is scaled from the current time to the 2898Autoscaling means that the map is scaled from the current time to the
2899oldest annotation in the buffer, or, with argument FULL non-nil, to 2899oldest annotation in the buffer, or, with prefix argument FULL, to
2900cover the range from the oldest annotation to the newest." 2900cover the range from the oldest annotation to the newest."
2901 (interactive) 2901 (interactive "P")
2902 (let ((newest 0.0) 2902 (let ((newest 0.0)
2903 (oldest 999999.) ;Any CVS users at the founding of Rome? 2903 (oldest 999999.) ;Any CVS users at the founding of Rome?
2904 (current (vc-annotate-convert-time (current-time))) 2904 (current (vc-annotate-convert-time (current-time)))