Function: rmail-mime-render-html-lynx
rmail-mime-render-html-lynx is a byte-compiled function defined in
rmailmm.el.gz.
Signature
(rmail-mime-render-html-lynx SOURCE-BUFFER)
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmailmm.el.gz
(defun rmail-mime-render-html-lynx (source-buffer)
(let ((destination-buffer (current-buffer)))
(with-current-buffer source-buffer
(call-process-region (point-min) (point-max)
"lynx" nil destination-buffer nil
"-stdin" "-dump" "-force_html"
"-dont_wrap_pre" "-width=70"))))