]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove stale comments from vc-git and vc-hg
authorTom Tromey <tom@tromey.com>
Tue, 14 Feb 2017 00:24:04 +0000 (17:24 -0700)
committerTom Tromey <tom@tromey.com>
Mon, 20 Feb 2017 03:59:35 +0000 (20:59 -0700)
* lisp/vc/vc-git.el (vc-git-retrieve-tag): Remove comment.
* lisp/vc/vc-hg.el (vc-hg-retrieve-tag): Remove comment.

lisp/vc/vc-git.el
lisp/vc/vc-hg.el

index 0f58892eb4e754c9f3d98e9070abbd0c61f73483..8a22d747b7d5a98d6bc855ae369fc51868f9162c 100644 (file)
@@ -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
index 2f9487ca2e71819d80478465074a75a930957ea4..8a2b07718cf8286190bb35fdb6c72ef198505853 100644 (file)
@@ -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
     ))