aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc
diff options
context:
space:
mode:
authorSantiago PayĆ  i Miralta2014-06-06 12:38:44 -0400
committerStefan Monnier2014-06-06 12:38:44 -0400
commit3112e4002cb1a29861bd7ae1b7ddff0dbdaa38a7 (patch)
treec2ca213d59301e0492c8386a6c402fd69f6df0e3 /lisp/vc
parent90b15d91595b965b4106ea77760ba6bc1b5d0af5 (diff)
downloademacs-3112e4002cb1a29861bd7ae1b7ddff0dbdaa38a7.tar.gz
emacs-3112e4002cb1a29861bd7ae1b7ddff0dbdaa38a7.zip
* lisp/vc/vc-hg.el (vc-hg-create-tag, vc-hg-retrieve-tag): New functions.
Fixes: debbugs:17586
Diffstat (limited to 'lisp/vc')
-rw-r--r--lisp/vc/vc-hg.el26
1 files changed, 22 insertions, 4 deletions
diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el
index 28cf48f54d6..598a84a5739 100644
--- a/lisp/vc/vc-hg.el
+++ b/lisp/vc/vc-hg.el
@@ -82,8 +82,8 @@
82;; - annotate-current-time () NOT NEEDED 82;; - annotate-current-time () NOT NEEDED
83;; - annotate-extract-revision-at-line () OK 83;; - annotate-extract-revision-at-line () OK
84;; TAG SYSTEM 84;; TAG SYSTEM
85;; - create-tag (dir name branchp) NEEDED 85;; - create-tag (dir name branchp) OK
86;; - retrieve-tag (dir name update) NEEDED 86;; - retrieve-tag (dir name update) OK FIXME UPDATE BUFFERS
87;; MISCELLANEOUS 87;; MISCELLANEOUS
88;; - make-version-backups-p (file) ?? 88;; - make-version-backups-p (file) ??
89;; - repository-hostname (dirname) ?? 89;; - repository-hostname (dirname) ??
@@ -391,8 +391,26 @@ Optional arg REVISION is a revision to annotate from."
391 (if (match-beginning 3) 391 (if (match-beginning 3)
392 (match-string-no-properties 1) 392 (match-string-no-properties 1)
393 (cons (match-string-no-properties 1) 393 (cons (match-string-no-properties 1)
394 (expand-file-name (match-string-no-properties 4) 394 (expand-file-name (match-string-no-properties 4)
395 (vc-hg-root default-directory))))))) 395 (vc-hg-root default-directory)))))))
396
397;;; Tag system
398
399(defun vc-hg-create-tag (dir name branchp)
400 "Attach the tag NAME to the state of the working copy."
401 (let ((default-directory dir))
402 (and (vc-hg-command nil 0 nil "status")
403 (vc-hg-command nil 0 nil (if branchp "bookmark" "tag") name))))
404
405(defun vc-hg-retrieve-tag (dir name update)
406 "Retrieve the version tagged by NAME of all registered files at or below DIR."
407 (let ((default-directory dir))
408 (vc-hg-command nil 0 nil "update" name)
409 ;; FIXME: update buffers if `update' is true
410 ;; TODO: update *vc-change-log* buffer so can see @ if --graph
411 ))
412
413;;; Miscellaneous
396 414
397(defun vc-hg-previous-revision (_file rev) 415(defun vc-hg-previous-revision (_file rev)
398 (let ((newrev (1- (string-to-number rev)))) 416 (let ((newrev (1- (string-to-number rev))))