aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-02-08 00:20:36 -0800
committerGlenn Morris2012-02-08 00:20:36 -0800
commita76863507de29951d49f29fe72f87df2c897769b (patch)
tree66c79b5dbf11f85e02ad501dd4dd04ec982ddc7e
parentc4077254f9de69f8204d58cadeecf122eff46ed3 (diff)
downloademacs-a76863507de29951d49f29fe72f87df2c897769b.tar.gz
emacs-a76863507de29951d49f29fe72f87df2c897769b.zip
* doc/emacs/rmail.texi (Rmail Display): Mention rmail-epa-decrypt.
* etc/NEWS: Related markup. * lisp/mail/rmail.el: Comment.
-rw-r--r--doc/emacs/ChangeLog2
-rw-r--r--doc/emacs/rmail.texi8
-rw-r--r--etc/NEWS1
-rw-r--r--lisp/mail/rmail.el3
4 files changed, 13 insertions, 1 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 9f51d9bbde6..160a0402fee 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,5 +1,7 @@
12012-02-08 Glenn Morris <rgm@gnu.org> 12012-02-08 Glenn Morris <rgm@gnu.org>
2 2
3 * rmail.texi (Rmail Display): Mention rmail-epa-decrypt.
4
3 * text.texi (LaTeX Editing): Mention latex-electric-env-pair-mode. 5 * text.texi (LaTeX Editing): Mention latex-electric-env-pair-mode.
4 6
52012-02-07 Glenn Morris <rgm@gnu.org> 72012-02-07 Glenn Morris <rgm@gnu.org>
diff --git a/doc/emacs/rmail.texi b/doc/emacs/rmail.texi
index be1c1f68c66..18556d4a5ef 100644
--- a/doc/emacs/rmail.texi
+++ b/doc/emacs/rmail.texi
@@ -1118,7 +1118,7 @@ buffer before sorting it.
1118@section Display of Messages 1118@section Display of Messages
1119 1119
1120 This section describes how Rmail displays mail headers, 1120 This section describes how Rmail displays mail headers,
1121@acronym{MIME} sections and attachments, and URLs. 1121@acronym{MIME} sections and attachments, URLs, and encrypted messages.
1122 1122
1123@table @kbd 1123@table @kbd
1124@item t 1124@item t
@@ -1209,6 +1209,12 @@ variable @code{rmail-enable-mime} to @code{nil}. When this is the
1209case, the @kbd{v} (@code{rmail-mime}) command instead creates a 1209case, the @kbd{v} (@code{rmail-mime}) command instead creates a
1210temporary buffer to display the current @acronym{MIME} message. 1210temporary buffer to display the current @acronym{MIME} message.
1211 1211
1212@findex rmail-epa-decrypt
1213@cindex encrypted mails (reading in Rmail)
1214 If the current message is an encrypted one, use the command @kbd{M-x
1215rmail-epa-decrypt} to decrypt it, using the EasyPG library
1216(@pxref{Top,,, epa, EasyPG Assistant User's Manual}).
1217
1212 You can highlight and activate URLs in the Rmail buffer using Goto 1218 You can highlight and activate URLs in the Rmail buffer using Goto
1213Address mode: 1219Address mode:
1214 1220
diff --git a/etc/NEWS b/etc/NEWS
index d0993707cf1..4d67a0f8d47 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -762,6 +762,7 @@ more variants, including Mercury, and a lot more.
762 762
763** Rmail 763** Rmail
764 764
765+++
765*** The command `rmail-epa-decrypt' decrypts OpenPGP data 766*** The command `rmail-epa-decrypt' decrypts OpenPGP data
766in the Rmail incoming message. 767in the Rmail incoming message.
767 768
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index 7d4c7c15447..2ed54aa8d86 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -4363,6 +4363,9 @@ encoded string (and the same mask) will decode the string."
4363 (setq i (1+ i))) 4363 (setq i (1+ i)))
4364 (concat string-vector))) 4364 (concat string-vector)))
4365 4365
4366;; Should this have a key-binding, or be in a menu?
4367;; There doesn't really seem to be an appropriate menu.
4368;; Eg the edit command is not in a menu either.
4366(defun rmail-epa-decrypt () 4369(defun rmail-epa-decrypt ()
4367 "Decrypt OpenPGP armors in current message." 4370 "Decrypt OpenPGP armors in current message."
4368 (interactive) 4371 (interactive)