aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/misc/emacs-mime.texi6
-rw-r--r--doc/misc/gnus-faq.texi6
-rw-r--r--doc/misc/gnus.texi3
-rw-r--r--doc/misc/mh-e.texi7
-rw-r--r--lisp/gnus/mm-decode.el9
5 files changed, 9 insertions, 22 deletions
diff --git a/doc/misc/emacs-mime.texi b/doc/misc/emacs-mime.texi
index 640712edf33..5f4e1a639be 100644
--- a/doc/misc/emacs-mime.texi
+++ b/doc/misc/emacs-mime.texi
@@ -403,9 +403,9 @@ This selects the function used to render @acronym{HTML}. The
403predefined renderers are selected by the symbols @code{shr}, 403predefined renderers are selected by the symbols @code{shr},
404@code{gnus-w3m}, @code{w3m}@footnote{See 404@code{gnus-w3m}, @code{w3m}@footnote{See
405@uref{http://emacs-w3m.namazu.org/} for more information about 405@uref{http://emacs-w3m.namazu.org/} for more information about
406emacs-w3m}, @code{links}, @code{lynx}, @code{w3m-standalone} or 406emacs-w3m}, @code{links}, @code{lynx}, or @code{w3m-standalone}. You
407@code{html2text}. You can also specify a function, which will be 407can also specify a function, which will be called with a
408called with a @acronym{MIME} handle as the argument. 408@acronym{MIME} handle as the argument.
409 409
410@item mm-html-inhibit-images 410@item mm-html-inhibit-images
411@vindex mm-html-inhibit-images 411@vindex mm-html-inhibit-images
diff --git a/doc/misc/gnus-faq.texi b/doc/misc/gnus-faq.texi
index 544d6279847..c442ca1bacd 100644
--- a/doc/misc/gnus-faq.texi
+++ b/doc/misc/gnus-faq.texi
@@ -745,9 +745,9 @@ Can I use some other browser than w3m to render my HTML-mails?
745@subsubheading Answer 745@subsubheading Answer
746 746
747You've got the choice between @samp{shr}, @samp{w3m}, @samp{links}, 747You've got the choice between @samp{shr}, @samp{w3m}, @samp{links},
748@samp{lynx} and @samp{html2text}. Which one is used is specified in 748and @samp{lynx}. Which one is used is specified in the variable
749the variable @code{mm-text-html-renderer}, so if you want links to 749@code{mm-text-html-renderer}, so if you want links to render your
750render your mail, say: 750mail, say:
751 751
752@example 752@example
753(setq mm-text-html-renderer 'links) 753(setq mm-text-html-renderer 'links)
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi
index baffe369c3e..204c6c6e598 100644
--- a/doc/misc/gnus.texi
+++ b/doc/misc/gnus.texi
@@ -9362,9 +9362,6 @@ Use @uref{https://almende.github.io/chap-links-library/, CHAP Links}.
9362@item lynx 9362@item lynx
9363Use @uref{https://lynx.browser.org/, Lynx}. 9363Use @uref{https://lynx.browser.org/, Lynx}.
9364 9364
9365@item html2text
9366Use html2text---a simple @acronym{HTML} converter included with Gnus.
9367
9368@end table 9365@end table
9369 9366
9370@item W D F 9367@item W D F
diff --git a/doc/misc/mh-e.texi b/doc/misc/mh-e.texi
index 83d81fc12dc..6a948ce2ca8 100644
--- a/doc/misc/mh-e.texi
+++ b/doc/misc/mh-e.texi
@@ -2553,13 +2553,6 @@ produces pretty nice output, and it highlights links. It renders
2553@samp{–} and @samp{®} okay. It sometimes fails to wrap lines 2553@samp{–} and @samp{®} okay. It sometimes fails to wrap lines
2554properly. It always downloads remote images. 2554properly. It always downloads remote images.
2555@c ------------------------- 2555@c -------------------------
2556@cindex browser, @samp{html2text}
2557@cindex @samp{html2text}
2558@item @samp{html2text}
2559The @samp{html2text} browser requires an external program. Some users
2560have reported problems with it, such as filling the entire message as
2561if it were one paragraph, or displaying chunks of raw HTML.
2562@c -------------------------
2563@cindex browser, @samp{links} 2556@cindex browser, @samp{links}
2564@cindex @samp{links} 2557@cindex @samp{links}
2565@item @samp{links} 2558@item @samp{links}
diff --git a/lisp/gnus/mm-decode.el b/lisp/gnus/mm-decode.el
index 79217d34001..1417ecdccc8 100644
--- a/lisp/gnus/mm-decode.el
+++ b/lisp/gnus/mm-decode.el
@@ -117,8 +117,7 @@
117 (cond ((fboundp 'libxml-parse-html-region) 'shr) 117 (cond ((fboundp 'libxml-parse-html-region) 'shr)
118 ((executable-find "w3m") 'gnus-w3m) 118 ((executable-find "w3m") 'gnus-w3m)
119 ((executable-find "links") 'links) 119 ((executable-find "links") 'links)
120 ((executable-find "lynx") 'lynx) 120 ((executable-find "lynx") 'lynx))
121 ((locate-library "html2text") 'html2text))
122 "Render of HTML contents. 121 "Render of HTML contents.
123It is one of defined renderer types, or a rendering function. 122It is one of defined renderer types, or a rendering function.
124The defined renderer types are: 123The defined renderer types are:
@@ -127,16 +126,14 @@ The defined renderer types are:
127`w3m': use emacs-w3m; 126`w3m': use emacs-w3m;
128`w3m-standalone': use plain w3m; 127`w3m-standalone': use plain w3m;
129`links': use links; 128`links': use links;
130`lynx': use lynx; 129`lynx': use lynx."
131`html2text': use html2text." 130 :version "29.1"
132 :version "27.1"
133 :type '(choice (const shr) 131 :type '(choice (const shr)
134 (const gnus-w3m) 132 (const gnus-w3m)
135 (const w3m :tag "emacs-w3m") 133 (const w3m :tag "emacs-w3m")
136 (const w3m-standalone :tag "standalone w3m" ) 134 (const w3m-standalone :tag "standalone w3m" )
137 (const links) 135 (const links)
138 (const lynx) 136 (const lynx)
139 (const html2text)
140 (function)) 137 (function))
141 :group 'mime-display) 138 :group 'mime-display)
142 139