branch: externals/vc-hgcmd
commit b67e78d0fb11e044874fa0fe88cd79dcacd311ca
Author: muffinmad <[email protected]>
Commit: muffinmad <[email protected]>
Implement update-on-retrieve-tag
---
vc-hgcmd.el | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/vc-hgcmd.el b/vc-hgcmd.el
index acc95b4..e1ea97a 100644
--- a/vc-hgcmd.el
+++ b/vc-hgcmd.el
@@ -5,7 +5,7 @@
;; Author: Andrii Kolomoiets <[email protected]>
;; Keywords: vc
;; URL: https://github.com/muffinmad/emacs-vc-hgcmd
-;; Package-Version: 1.9
+;; Package-Version: 1.9.1
;; Package-Requires: ((emacs "25.1"))
;; This file is NOT part of GNU Emacs.
@@ -30,6 +30,7 @@
;; FUNCTION NAME STATUS
;; BACKEND PROPERTIES
;; * revision-granularity OK
+;; - update-on-retrieve-tag OK
;; STATE-QUERYING FUNCTIONS
;; * registered (file) OK
;; * state (file) OK
@@ -587,6 +588,10 @@ Insert output to process buffer and check if amount of
data is enought to parse
"Per-repository revision number."
'repository)
+(defun vc-hgcmd-update-on-retrieve-tag ()
+ "No buffers update on retrieve tag."
+ nil)
+
;;;###autoload (defun vc-hgcmd-registered (file)
;;;###autoload (when (vc-find-root file ".hg")
;;;###autoload (load "vc-hgcmd" nil t)