aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2020-07-20 17:31:50 +0300
committerEli Zaretskii2020-07-20 17:31:50 +0300
commitcd93debc600b31ec7d257ba0195ae7132df83816 (patch)
tree5fcf49e29401ccb47610f3b74f1468f3fc549a91
parent05c4329cf59f8bde98e33952c1f26551de83e400 (diff)
parent2c0c613ec55051f7e7ecb2301a8d10a5a077590b (diff)
downloademacs-cd93debc600b31ec7d257ba0195ae7132df83816.tar.gz
emacs-cd93debc600b31ec7d257ba0195ae7132df83816.zip
Merge branch 'emacs-27' of git.savannah.gnu.org:/srv/git/emacs into emacs-27
-rw-r--r--doc/misc/epa.texi5
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/epa-mail.el5
3 files changed, 9 insertions, 3 deletions
diff --git a/doc/misc/epa.texi b/doc/misc/epa.texi
index 49b6b53c0c4..fa1833a3da6 100644
--- a/doc/misc/epa.texi
+++ b/doc/misc/epa.texi
@@ -337,7 +337,8 @@ Verify OpenPGP cleartext signed messages in the current buffer.
337@kindex C-c C-e C-s 337@kindex C-c C-e C-s
338@kindex C-c C-e s 338@kindex C-c C-e s
339@findex epa-mail-sign 339@findex epa-mail-sign
340Compose a signed message from the current buffer. 340Compose a signed message from the current buffer, using your default
341key. With a prefix argument, select the key to use interactively.
341 342
342@item C-c C-e C-e and C-c C-e e 343@item C-c C-e C-e and C-c C-e e
343@kindex C-c C-e C-e 344@kindex C-c C-e C-e
@@ -352,6 +353,8 @@ key in the recipient list, use @samp{encrypt-to} option in
352addresses using the @code{epa-mail-aliases} list. You can also 353addresses using the @code{epa-mail-aliases} list. You can also
353use that option to ignore specific recipients for encryption purposes. 354use that option to ignore specific recipients for encryption purposes.
354 355
356With prefix argument, asks you to select the recipients interactively,
357whether to sign, and which key(s) to sign with.
355@end table 358@end table
356 359
357@node Encrypting/decrypting gpg files, , Mail-mode integration, Commands 360@node Encrypting/decrypting gpg files, , Mail-mode integration, Commands
diff --git a/etc/NEWS b/etc/NEWS
index 10a6e3946e7..2c8fa9dd397 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -270,7 +270,7 @@ doing before changing the value.
270+++ 270+++
271** Native GnuTLS connections can now use client certificates. 271** Native GnuTLS connections can now use client certificates.
272Previously, this support was only available when using the external 272Previously, this support was only available when using the external
273'gnutls-cli' command. Call 'open-network-stream' with 273'gnutls-cli' or 'starttls' command. Call 'open-network-stream' with
274':client-certificate t' to trigger looking up of per-server 274':client-certificate t' to trigger looking up of per-server
275certificates via 'auth-source'. 275certificates via 'auth-source'.
276 276
diff --git a/lisp/epa-mail.el b/lisp/epa-mail.el
index 00f560af0b7..63475256ca8 100644
--- a/lisp/epa-mail.el
+++ b/lisp/epa-mail.el
@@ -85,7 +85,10 @@ The buffer is expected to contain a mail message."
85;;;###autoload 85;;;###autoload
86(defun epa-mail-sign (start end signers mode) 86(defun epa-mail-sign (start end signers mode)
87 "Sign the current buffer. 87 "Sign the current buffer.
88The buffer is expected to contain a mail message." 88The buffer is expected to contain a mail message, and signing is
89performed with your default key.
90With prefix argument, asks you to select interactively the key to
91use from your key ring."
89 (declare (interactive-only t)) 92 (declare (interactive-only t))
90 (interactive 93 (interactive
91 (save-excursion 94 (save-excursion