diff options
| author | Stefan Kangas | 2019-10-28 17:33:22 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2020-01-16 15:33:17 +0100 |
| commit | 0f4fa004ebbcf8796abab26988e79b01ba4f2ab5 (patch) | |
| tree | cbda62f94b12f050cf91fec6ebb5b39e03b2d5bc /doc/lispref | |
| parent | f7ff3ddc16b98d63ef95768e70ba2b78a574d162 (diff) | |
| download | emacs-0f4fa004ebbcf8796abab26988e79b01ba4f2ab5.tar.gz emacs-0f4fa004ebbcf8796abab26988e79b01ba4f2ab5.zip | |
Remove references to obsolete libraries
* doc/emacs/cmdargs.texi (General Variables):
* doc/lispintro/emacs-lisp-intro.texi (Lisp History):
* doc/lispref/processes.texi (Network):
* doc/misc/gnus-coding.texi (Gnus Coding Style):
* doc/misc/gnus.texi (Oort Gnus):
* doc/misc/smtpmail.texi (Encryption): Remove references to obsolete
libraries. (Bug#37964)
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/processes.texi | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 6970f718ee0..f515213615e 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -2426,18 +2426,15 @@ server is stopped; a non-@code{nil} value means yes. | |||
| 2426 | @cindex encrypted network connections | 2426 | @cindex encrypted network connections |
| 2427 | @cindex @acronym{TLS} network connections | 2427 | @cindex @acronym{TLS} network connections |
| 2428 | @cindex @acronym{STARTTLS} network connections | 2428 | @cindex @acronym{STARTTLS} network connections |
| 2429 | Emacs can create encrypted network connections, using either built-in | 2429 | Emacs can create encrypted network connections, using the built-in |
| 2430 | or external support. The built-in support uses the GnuTLS | 2430 | support for the GnuTLS Transport Layer Security Library; see |
| 2431 | Transport Layer Security Library; see | ||
| 2432 | @uref{https://www.gnu.org/software/gnutls/, the GnuTLS project page}. | 2431 | @uref{https://www.gnu.org/software/gnutls/, the GnuTLS project page}. |
| 2433 | If your Emacs was compiled with GnuTLS support, the function | 2432 | If your Emacs was compiled with GnuTLS support, the function |
| 2434 | @code{gnutls-available-p} is defined and returns non-@code{nil}. For | 2433 | @code{gnutls-available-p} is defined and returns non-@code{nil}. For |
| 2435 | more details, @pxref{Top,, Overview, emacs-gnutls, The Emacs-GnuTLS manual}. | 2434 | more details, @pxref{Top,, Overview, emacs-gnutls, The Emacs-GnuTLS manual}. |
| 2436 | The external support uses the @file{starttls.el} library, which | 2435 | The @code{open-network-stream} function can transparently handle the |
| 2437 | requires a helper utility such as @command{gnutls-cli} to be installed | 2436 | details of creating encrypted connections for you, using whatever |
| 2438 | on the system. The @code{open-network-stream} function can | 2437 | support is available. |
| 2439 | transparently handle the details of creating encrypted connections for | ||
| 2440 | you, using whatever support is available. | ||
| 2441 | 2438 | ||
| 2442 | @defun open-network-stream name buffer host service &rest parameters | 2439 | @defun open-network-stream name buffer host service &rest parameters |
| 2443 | This function opens a TCP connection, with optional encryption, and | 2440 | This function opens a TCP connection, with optional encryption, and |