]> git.eshelyaron.com Git - emacs.git/commitdiff
Accept "-w" as safe value for vc-git-annotate-switches
authorStefan Kangas <stefankangas@gmail.com>
Fri, 9 Sep 2022 21:56:24 +0000 (23:56 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Fri, 9 Sep 2022 23:12:29 +0000 (01:12 +0200)
* lisp/vc/vc-git.el
(vc-git-annotate-switches-safe-p): New predicate function.
(vc-git-annotate-switches): Use above new predicate function to
check if it's :safe.

lisp/vc/vc-git.el

index 9dfdd9e7b134150d33319e22ea504accf9b956ba..2941cc75bebc6b2e4623aa8bd5c253dbdd3f3c88 100644 (file)
@@ -119,6 +119,14 @@ If nil, use the value of `vc-diff-switches'.  If t, use no switches."
                 (repeat :tag "Argument List" :value ("") string))
   :version "23.1")
 
+;;;###autoload
+(defun vc-git-annotate-switches-safe-p (switches)
+  "Check if local value of `vc-git-annotate-switches' is safe.
+Currently only \"-w\" (ignore whitespace) is considered safe, but
+this list might be extended in the future."
+  ;; TODO: Probably most options are perfectly safe.
+  (equal switches "-w"))
+
 (defcustom vc-git-annotate-switches nil
   "String or list of strings specifying switches for Git blame under VC.
 If nil, use the value of `vc-annotate-switches'.  If t, use no switches."
@@ -127,6 +135,7 @@ If nil, use the value of `vc-annotate-switches'.  If t, use no switches."
                 (string :tag "Argument String")
                 (repeat :tag "Argument List" :value ("") string))
   :version "25.1")
+;;;###autoload(put 'vc-git-annotate-switches 'safe-local-variable #'vc-git-annotate-switches-safe-p)
 
 (defcustom vc-git-log-switches nil
   "String or list of strings specifying switches for Git log under VC."