aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2018-07-08 18:22:51 +0300
committerEli Zaretskii2018-07-08 18:22:51 +0300
commit48efd1c98b3d4714860e4bf355c6af57c6cee827 (patch)
treeb8b8292c83d28ffe70efd550104dc4a821fc7d47
parent3302b7cd7f0afe9144cec2343902488fbe02d415 (diff)
downloademacs-48efd1c98b3d4714860e4bf355c6af57c6cee827.tar.gz
emacs-48efd1c98b3d4714860e4bf355c6af57c6cee827.zip
Minor fix of a recent documentation change
* lisp/net/gnutls.el (gnutls-algorithm-priority): Clarify the doc string.
-rw-r--r--lisp/net/gnutls.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/net/gnutls.el b/lisp/net/gnutls.el
index 4cc1f5f4c3d..35fe680592a 100644
--- a/lisp/net/gnutls.el
+++ b/lisp/net/gnutls.el
@@ -50,9 +50,11 @@ set this variable to \"normal:-dhe-rsa\".
50 50
51This variable can be useful for modifying low-level TLS 51This variable can be useful for modifying low-level TLS
52connection parameters (for instance if you need to connect to a 52connection parameters (for instance if you need to connect to a
53host that only accepts a specific algorithm), but general Emacs 53host that only accepts a specific algorithm). However, in
54network security is handled by the Network Security Manager. See 54general, Emacs network security is handled by the Network
55Info node `(emacs) Network Security'." 55Security Manager (NSM), and the default value of nil delegates
56the job of checking the connection security to the NSM.
57See Info node `(emacs) Network Security'."
56 :group 'gnutls 58 :group 'gnutls
57 :type '(choice (const nil) 59 :type '(choice (const nil)
58 string)) 60 string))