* vc-svn.el (vc-svn-annotate-command): Run asynchronously.
* vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
that is ignored for now.
+ * vc-mtn.el (vc-mtn-annotate-command):
+ * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
+
2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
* simple.el: Add mapping for backspace/delete/clear/tab/escape/return
(if rev1 (list "-r" rev1)) (if rev2 (list "-r" rev2)))))
(defun vc-mtn-annotate-command (file buf &optional rev)
- (apply 'vc-mtn-command buf 0 file "annotate"
+ (apply 'vc-mtn-command buf 'async file "annotate"
(if rev (list "-r" rev))))
(declare-function vc-annotate-convert-time "vc-annotate" (time))
;; Support for `svn annotate'
(defun vc-svn-annotate-command (file buf &optional rev)
- (vc-svn-command buf 0 file "annotate" (if rev (concat "-r" rev))))
+ (vc-svn-command buf 'async file "annotate" (if rev (concat "-r" rev))))
(defun vc-svn-annotate-time-of-rev (rev)
;; Arbitrarily assume 10 commmits per day.