summaryrefslogtreecommitdiff
path: root/lisp/gnus/mm-decode.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2022-08-14 16:28:25 +0200
committerStefan Kangas <stefan@marxist.se>2022-08-14 23:46:33 +0200
commitecc647d0118619dd87e9ee43f53ac7ad5a012250 (patch)
tree422171859b47b9f99f75e6b11a4717dc35da93fc /lisp/gnus/mm-decode.el
parenta64fe6f31987ca4a2c8ac6b96b97c6a440aeb2a2 (diff)
downloademacs-ecc647d0118619dd87e9ee43f53ac7ad5a012250.tar.gz
Don't advertise obsolete library html2text.el
* doc/misc/emacs-mime.texi (Display Customization): * doc/misc/gnus-faq.texi (FAQ 4-7): * doc/misc/gnus.texi (Article Washing): * doc/misc/mh-e.texi (HTML): * lisp/gnus/mm-decode.el (mm-text-html-renderer): Don't advertise obsolete library html2text.el.
Diffstat (limited to 'lisp/gnus/mm-decode.el')
-rw-r--r--lisp/gnus/mm-decode.el9
1 files changed, 3 insertions, 6 deletions
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 @@
(cond ((fboundp 'libxml-parse-html-region) 'shr)
((executable-find "w3m") 'gnus-w3m)
((executable-find "links") 'links)
- ((executable-find "lynx") 'lynx)
- ((locate-library "html2text") 'html2text))
+ ((executable-find "lynx") 'lynx))
"Render of HTML contents.
It is one of defined renderer types, or a rendering function.
The defined renderer types are:
@@ -127,16 +126,14 @@ The defined renderer types are:
`w3m': use emacs-w3m;
`w3m-standalone': use plain w3m;
`links': use links;
-`lynx': use lynx;
-`html2text': use html2text."
- :version "27.1"
+`lynx': use lynx."
+ :version "29.1"
:type '(choice (const shr)
(const gnus-w3m)
(const w3m :tag "emacs-w3m")
(const w3m-standalone :tag "standalone w3m" )
(const links)
(const lynx)
- (const html2text)
(function))
:group 'mime-display)