+2008-05-17 Dan Nicolaescu <dann@rosas>
+
+ * vc.el (vc-annotate-show-diff-revision-at-line): Change
+ vc-diff-internal arg to match what vc-deduce-fileseset returns now.
+
2008-05-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
* menu-bar.el (menu-bar-select-buffer): Reinsert it as msb.el use it.
;; VC status implementation
(defun vc-default-status-extra-headers (backend dir)
- ;; Be loud by default to remind people to add coded to display
+ ;; Be loud by default to remind people to add code to display
;; backend specific headers.
;; XXX: change this to return nil before the release.
"Extra : Add backend specific headers here")
(save-window-excursion
(vc-diff-internal
nil
- (cons vc-annotate-backend (list vc-annotate-parent-file))
+ ;; The value passed here should follow what
+ ;; `vc-deduce-fileset' returns.
+ (cons vc-annotate-backend
+ (cons (list vc-annotate-parent-file) nil))
prev-rev rev-at-line))
(switch-to-buffer "*vc-diff*"))))))