diff options
author | Robert Pluim <rpluim@gmail.com> | 2022-09-20 11:46:04 +0200 |
---|---|---|
committer | Robert Pluim <rpluim@gmail.com> | 2022-09-20 11:46:04 +0200 |
commit | 540585254133af722739339ef420e68e09fe62e5 (patch) | |
tree | 45418e70257292e06f39b42993d5d35006784f23 /lisp | |
parent | 191505b8a3a450e4b5658f90913c8e201517be98 (diff) | |
download | emacs-540585254133af722739339ef420e68e09fe62e5.tar.gz emacs-540585254133af722739339ef420e68e09fe62e5.tar.bz2 emacs-540585254133af722739339ef420e68e09fe62e5.zip |
Remove mention of non-existent `annotate-switches'
* lisp/vc/vc.el (vc-annotate-switches): Remove mention of
`annotate-switches'. As far as I can tell this has never existed in
Emacs.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/vc/vc.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index bebd0946dee..82da5e74489 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -803,12 +803,12 @@ not specific to any particular backend." (defcustom vc-annotate-switches nil "A string or list of strings specifying switches for annotate under VC. When running annotate under a given BACKEND, VC uses the first -non-nil value of `vc-BACKEND-annotate-switches', `vc-annotate-switches', -and `annotate-switches', in that order. Since nil means to check the -next variable in the sequence, either of the first two may use -the value t to mean no switches at all. `vc-annotate-switches' -should contain switches that are specific to version control, but -not specific to any particular backend. +non-nil value of `vc-BACKEND-annotate-switches' and +`vc-annotate-switches', in that order. Since nil means to check +the next variable in the sequence, setting the first to the value +t means no switches at all. `vc-annotate-switches' should +contain switches that are specific to version control, but not +specific to any particular backend. As very few switches (if any) are used across different VC tools, please consider using the specific `vc-BACKEND-annotate-switches' |