]> git.eshelyaron.com Git - emacs.git/commitdiff
Add vc-hg-revert-switches
authorIan Dunn <dunni@gnu.org>
Thu, 7 Feb 2019 09:26:04 +0000 (12:26 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Thu, 7 Feb 2019 09:27:34 +0000 (12:27 +0300)
* lisp/vc/vc-hg.el (vc-hg-revert-switches): New option.
(vc-hg-revert): Use it.

etc/NEWS
lisp/vc/vc-hg.el

index f889a8ac3c08c687b39da87c0730197292f31b5b..7ee49bf6b5451132616207d44411395cc88d2a56 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -448,6 +448,9 @@ values.
 *** 'C-u C-x v D' ('vc-root-version-diff') prompts for two revisions
 and compares their entire trees.
 
+*** New user option 'vc-hg-revert-switches' specifies switches to pass
+to hg revert.
+
 ** Diff mode
 *** Hunks are now automatically refined by default.
 To disable it, set the new defcustom 'diff-font-lock-refine' to nil.
index befaabd5c663ee55aa2936cf3bd0bbe1ab014718..342c6d214cdce2bb85ca0f320bfe1f940dc12c34 100644 (file)
@@ -145,6 +145,15 @@ switches."
   :version "25.1"
   :group 'vc-hg)
 
+(defcustom vc-hg-revert-switches nil
+  "String or list of strings specifying switches for hg revert
+under VC."
+  :type '(choice (const :tag "None" nil)
+                (string :tag "Argument String")
+                (repeat :tag "Argument List" :value ("") string))
+  :version "27.1"
+  :group 'vc-hg)
+
 (defcustom vc-hg-program "hg"
   "Name of the Mercurial executable (excluding any arguments)."
   :type 'string
@@ -1161,7 +1170,11 @@ REV is the revision to check out into WORKFILE."
 ;; Modeled after the similar function in vc-bzr.el
 (defun vc-hg-revert (file &optional contents-done)
   (unless contents-done
-    (with-temp-buffer (vc-hg-command t 0 file "revert"))))
+    (with-temp-buffer
+      (apply #'vc-hg-command
+             t 0 file
+             "revert"
+             (append (vc-switches 'hg 'revert))))))
 
 ;;; Hg specific functionality.