diff options
| author | Eli Zaretskii | 2019-10-26 12:57:09 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-10-26 12:57:09 +0300 |
| commit | c3b0950639f847264d3d6558d065993fb743376c (patch) | |
| tree | 31982909884b2fdec025f65a5fe83d1d6da71b84 /lisp | |
| parent | 626e0a6aad6b0f3c7348f37c9b2c9854b06b449b (diff) | |
| download | emacs-c3b0950639f847264d3d6558d065993fb743376c.tar.gz emacs-c3b0950639f847264d3d6558d065993fb743376c.zip | |
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.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/vc/vc-dispatcher.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/vc/vc-dispatcher.el b/lisp/vc/vc-dispatcher.el index bf238dedbb8..40055091ef7 100644 --- a/lisp/vc/vc-dispatcher.el +++ b/lisp/vc/vc-dispatcher.el | |||
| @@ -268,8 +268,11 @@ and is passed 3 arguments: the COMMAND, the FILES and the FLAGS.") | |||
| 268 | (if (not filelist) "." (mapconcat 'identity filelist " "))) | 268 | (if (not filelist) "." (mapconcat 'identity filelist " "))) |
| 269 | 269 | ||
| 270 | (defcustom vc-tor nil | 270 | (defcustom vc-tor nil |
| 271 | "If non-nil, communicate with the repository site via Tor." | 271 | "If non-nil, communicate with the repository site via Tor. |
| 272 | See https://2019.www.torproject.org/about/overview.html.en and | ||
| 273 | the man pages for \"torsocks\" for more details about Tor." | ||
| 272 | :type 'boolean | 274 | :type 'boolean |
| 275 | :version "27.1" | ||
| 273 | :group 'vc) | 276 | :group 'vc) |
| 274 | 277 | ||
| 275 | ;;;###autoload | 278 | ;;;###autoload |