summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2017-02-13 17:24:04 -0700
committerTom Tromey <tom@tromey.com>2017-02-19 20:59:35 -0700
commita4c3227230fbdbcb324313b6aae067ad284f8239 (patch)
tree56680ead51146e516817a6e976a67cace7a1d6bb
parente7b0dac11356f4f343f0441ce2078e994e1a7219 (diff)
downloademacs-a4c3227230fbdbcb324313b6aae067ad284f8239.tar.gz
emacs-a4c3227230fbdbcb324313b6aae067ad284f8239.tar.bz2
emacs-a4c3227230fbdbcb324313b6aae067ad284f8239.zip
Remove stale comments from vc-git and vc-hg
* lisp/vc/vc-git.el (vc-git-retrieve-tag): Remove comment. * lisp/vc/vc-hg.el (vc-hg-retrieve-tag): Remove comment.
-rw-r--r--lisp/vc/vc-git.el4
-rw-r--r--lisp/vc/vc-hg.el3
2 files changed, 2 insertions, 5 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el
index 0f58892eb4e..8a22d747b7d 100644
--- a/lisp/vc/vc-git.el
+++ b/lisp/vc/vc-git.el
@@ -1240,9 +1240,7 @@ This requires git 1.8.4 or later, for the \"-L\" option of \"git log\"."
(defun vc-git-retrieve-tag (dir name _update)
(let ((default-directory dir))
- (vc-git-command nil 0 nil "checkout" name)
- ;; FIXME: update buffers if `update' is true
- ))
+ (vc-git-command nil 0 nil "checkout" name)))
;;; MISCELLANEOUS
diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el
index 2f9487ca2e7..8a2b07718cf 100644
--- a/lisp/vc/vc-hg.el
+++ b/lisp/vc/vc-hg.el
@@ -76,7 +76,7 @@
;; - annotate-extract-revision-at-line () OK
;; TAG SYSTEM
;; - create-tag (dir name branchp) OK
-;; - retrieve-tag (dir name update) OK FIXME UPDATE BUFFERS
+;; - retrieve-tag (dir name update) OK
;; MISCELLANEOUS
;; - make-version-backups-p (file) ??
;; - previous-revision (file rev) OK
@@ -562,7 +562,6 @@ Optional arg REVISION is a revision to annotate from."
"Retrieve the version tagged by NAME of all registered files at or below DIR."
(let ((default-directory dir))
(vc-hg-command nil 0 nil "update" name)
- ;; FIXME: update buffers if `update' is true
;; TODO: update *vc-change-log* buffer so can see @ if --graph
))