aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/vc/vc-hg.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el
index 16e5dd6db00..48a7838684a 100644
--- a/lisp/vc/vc-hg.el
+++ b/lisp/vc/vc-hg.el
@@ -578,7 +578,7 @@ Optional arg REVISION is a revision to annotate from."
578(defun vc-hg-retrieve-tag (dir name _update) 578(defun vc-hg-retrieve-tag (dir name _update)
579 "Retrieve the version tagged by NAME of all registered files at or below DIR." 579 "Retrieve the version tagged by NAME of all registered files at or below DIR."
580 (let ((default-directory dir)) 580 (let ((default-directory dir))
581 (vc-hg-command nil 0 nil "update" name) 581 (vc-hg-command nil 0 nil "update" (unless (string-empty-p name) name))
582 ;; TODO: update *vc-change-log* buffer so can see @ if --graph 582 ;; TODO: update *vc-change-log* buffer so can see @ if --graph
583 )) 583 ))
584 584