Improve the documentation of 'vc-tor'

* lisp/vc/vc-dispatcher.el (vc-tor): Add :version.  Enhance
the doc string.

* etc/NEWS: Announce the new option.
This commit is contained in:
Eli Zaretskii 2019-10-26 12:57:09 +03:00
parent 626e0a6aad
commit c3b0950639
2 changed files with 10 additions and 1 deletions

View file

@ -823,6 +823,12 @@ The default value is 'find-dired-sort-by-filename'.
** Change Logs and VC
---
*** New user option 'vc-tor'.
When non-nil, this option causes the VC commands to communicate with
the repository via Tor's proxy, using the 'torsocks' wrapper script.
The default is nil.
+++
*** New command 'log-edit-generate-changelog-from-diff', bound to 'C-c C-w'.
This generates ChangeLog entries from the VC fileset diff.

View file

@ -268,8 +268,11 @@ and is passed 3 arguments: the COMMAND, the FILES and the FLAGS.")
(if (not filelist) "." (mapconcat 'identity filelist " ")))
(defcustom vc-tor nil
"If non-nil, communicate with the repository site via Tor."
"If non-nil, communicate with the repository site via Tor.
See https://2019.www.torproject.org/about/overview.html.en and
the man pages for \"torsocks\" for more details about Tor."
:type 'boolean
:version "27.1"
:group 'vc)
;;;###autoload