diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-10-20 01:28:35 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-10-20 01:28:35 +0000 |
commit | 54a2247d6e1c0b6abb8df6808130797f2a5eec50 (patch) | |
tree | b716549d33c846844216486e3204fccff073308b /lisp/vc-hg.el | |
parent | 844b90ae5980f87dd25b38e8cc9e46568f3aa727 (diff) | |
download | emacs-54a2247d6e1c0b6abb8df6808130797f2a5eec50.tar.gz |
* vc-bzr.el (vc-bzr-diff-tree):
* vc-git.el (vc-git-diff-tree):
* vc-hg.el (vc-hg-diff-tree):
* vc-mcvs.el (vc-mcvs-diff-tree):
* vc-mtn.el (vc-mtn-diff-tree):
* vc-svn.el (vc-svn-diff-tree): Remove.
Diffstat (limited to 'lisp/vc-hg.el')
-rw-r--r-- | lisp/vc-hg.el | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lisp/vc-hg.el b/lisp/vc-hg.el index 8e9cf15688b..872be45a2c1 100644 --- a/lisp/vc-hg.el +++ b/lisp/vc-hg.el @@ -76,8 +76,7 @@ ;; - comment-history (file) NOT NEEDED ;; - update-changelog (files) NOT NEEDED ;; * diff (files &optional rev1 rev2 buffer) OK -;; - revision-completion-table (file) COMMENTED OUT AS A WORKAROUND FOR A BUG -;; - diff-tree (dir &optional rev1 rev2) TEST IT +;; - revision-completion-table (files) OK? ;; - annotate-command (file buf &optional rev) OK ;; - annotate-time () OK ;; - annotate-current-time () ?? NOT NEEDED @@ -309,9 +308,6 @@ table (lambda () (vc-hg-revision-table files)))) table)) -(defun vc-hg-diff-tree (file &optional oldvers newvers buffer) - (vc-hg-diff (list file) oldvers newvers buffer)) - (defun vc-hg-annotate-command (file buffer &optional revision) "Execute \"hg annotate\" on FILE, inserting the contents in BUFFER. Optional arg REVISION is a revision to annotate from." |