aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2015-12-19 17:43:11 +0200
committerEli Zaretskii2015-12-19 17:43:11 +0200
commit7a0786e7db9bb48a3f9745f5e631dddcb95f4019 (patch)
tree47a0e219138deafe01d854b19b9e9d6b183433db
parent1fe1d18f0750288f30ba054aad5be7e223eee121 (diff)
downloademacs-7a0786e7db9bb48a3f9745f5e631dddcb95f4019.tar.gz
emacs-7a0786e7db9bb48a3f9745f5e631dddcb95f4019.zip
Document new features of Rmail
* doc/emacs/rmail.texi (Rmail Summary Edit, Rmail Deletion): Document new behavior of 'd' and 'C-d' with numeric argument. (Rmail Display): Document the rendering of HTML MIME parts.
-rw-r--r--doc/emacs/rmail.texi27
-rw-r--r--etc/NEWS2
2 files changed, 19 insertions, 10 deletions
diff --git a/doc/emacs/rmail.texi b/doc/emacs/rmail.texi
index 6e2a60b6378..bf8258add45 100644
--- a/doc/emacs/rmail.texi
+++ b/doc/emacs/rmail.texi
@@ -282,9 +282,9 @@ current message and select another. @kbd{d}
282messages already deleted, while @kbd{C-d} (@code{rmail-delete-backward}) 282messages already deleted, while @kbd{C-d} (@code{rmail-delete-backward})
283moves to the previous nondeleted message. If there is no nondeleted 283moves to the previous nondeleted message. If there is no nondeleted
284message to move to in the specified direction, the message that was just 284message to move to in the specified direction, the message that was just
285deleted remains current. @kbd{d} with a prefix argument is equivalent 285deleted remains current. A numeric prefix argument serves as a repeat
286to @kbd{C-d}. Note that the Rmail summary versions of these commands 286count, to allow deletion of several messages in a single command. A
287behave slightly differently (@pxref{Rmail Summary Edit}). 287negative argument reverses the meaning of @kbd{d} and @kbd{C-d}.
288 288
289@c mention other hooks, e.g., show message hook? 289@c mention other hooks, e.g., show message hook?
290@vindex rmail-delete-message-hook 290@vindex rmail-delete-message-hook
@@ -974,13 +974,11 @@ different lines. It doesn't matter what Emacs command you use to move
974point; whichever line point is on at the end of the command, that 974point; whichever line point is on at the end of the command, that
975message is selected in the Rmail buffer. 975message is selected in the Rmail buffer.
976 976
977 Almost all Rmail commands work in the summary buffer as well as in the 977 Almost all Rmail commands work in the summary buffer as well as in
978Rmail buffer. Thus, @kbd{d} in the summary buffer deletes the current 978the Rmail buffer. Thus, @kbd{d} in the summary buffer deletes the
979message, @kbd{u} undeletes, and @kbd{x} expunges. (However, in the 979current message, @kbd{u} undeletes, and @kbd{x} expunges. (However,
980summary buffer, a numeric argument to @kbd{d}, @kbd{C-d} and @kbd{u} 980in the summary buffer, if there are no more undeleted messages in the
981serves as a repeat count. A negative argument reverses the meaning of 981relevant direction, the delete commands go to the first or last
982@kbd{d} and @kbd{C-d}. Also, if there are no more undeleted messages in
983the relevant direction, the delete commands go to the first or last
984message, rather than staying on the current message.) @kbd{o} and 982message, rather than staying on the current message.) @kbd{o} and
985@kbd{C-o} output the current message to a FILE; @kbd{r} starts a reply 983@kbd{C-o} output the current message to a FILE; @kbd{r} starts a reply
986to it; etc. You can scroll the current message while remaining in the 984to it; etc. You can scroll the current message while remaining in the
@@ -1224,6 +1222,15 @@ tagline (except for buttons for other actions, if there are any). Type
1224the undecoded @acronym{MIME} data. With a prefix argument, this 1222the undecoded @acronym{MIME} data. With a prefix argument, this
1225command toggles the display of only an entity at point. 1223command toggles the display of only an entity at point.
1226 1224
1225@vindex rmail-mime-prefer-html
1226 If the message has an @acronym{HTML} @acronym{MIME} part, Rmail
1227displays it in preference to the plain-text part, if Emacs can render
1228@acronym{HTML}@footnote{
1229This capability requires that Emacs be built with @file{libxml2}
1230support or that you have the Lynx browser installed.}. To prevent
1231that, and have the plain-text part displayed instead, customize the
1232variable @code{rmail-mime-prefer-html} to a @code{nil} value.
1233
1227 To prevent Rmail from handling MIME decoded messages, change the 1234 To prevent Rmail from handling MIME decoded messages, change the
1228variable @code{rmail-enable-mime} to @code{nil}. When this is the 1235variable @code{rmail-enable-mime} to @code{nil}. When this is the
1229case, the @kbd{v} (@code{rmail-mime}) command instead creates a 1236case, the @kbd{v} (@code{rmail-mime}) command instead creates a
diff --git a/etc/NEWS b/etc/NEWS
index 44686645a83..24c7ab81115 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -720,9 +720,11 @@ alternatives to currently visited manuals.
720 720
721** Rmail 721** Rmail
722 722
723+++
723*** The Rmail commands d, C-d and u take optional repeat counts to delete or 724*** The Rmail commands d, C-d and u take optional repeat counts to delete or
724undelete multiple messages. 725undelete multiple messages.
725 726
727+++
726*** Rmail can now render HTML mail messages if your Emacs was built with 728*** Rmail can now render HTML mail messages if your Emacs was built with
727libxml2 or if you have the Lynx browser installed. By default, Rmail 729libxml2 or if you have the Lynx browser installed. By default, Rmail
728will display the HTML version of a mail message that has both HTML and 730will display the HTML version of a mail message that has both HTML and