diff options
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/vc-rcs.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b447d51f3fa..0e0328d3bf6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2004-12-29 Thien-Thi Nguyen <ttn@gnu.org> + + * vc-rcs.el (vc-rcs-annotate-command): + Fix omission bug: Call `vc-setup-buffer'. + 2004-12-29 Kenichi Handa <handa@m17n.org> * international/mule.el (recode-region): New function. diff --git a/lisp/vc-rcs.el b/lisp/vc-rcs.el index 71bdc73e792..6e6bb04c2ec 100644 --- a/lisp/vc-rcs.el +++ b/lisp/vc-rcs.el @@ -500,6 +500,7 @@ Needs RCS 5.6.2 or later for -M." (defun vc-rcs-annotate-command (file buffer &optional revision) "Annotate FILE, inserting the results in BUFFER. Optional arg REVISION is a revision to annotate from." + (vc-setup-buffer buffer) ;; Aside from the "head revision on the trunk", the instructions for ;; each revision on the trunk are an ordered list of kill and insert ;; commands necessary to go from the chronologically-following |