On Tue, 2003-02-11 at 18:20, Kevin Quick wrote:
When using "VM" to view HTML-formatted email sent by people
using MS
Outlook, I get MIME translation errors. The MS Exchange Server
formats the HTML with entities like "’" which w3 (as invoked by
VM to display the html) does not know how to display. Not knowing how
to display garbage like that is fine IMHO, but it should (and tries
to) choose a reasonable fallback but it fails instead.
SOLUTION:
[snip]
Kevin, I'd rather stick with upstream here (though the file is obsolete
there as well), could you check if the version from upstream CVS [1]
works for you? Here it goes:
(defun mule-make-iso-character (char)
(condition-case ()
(if (<= char 127)
char
(case mule-sysdep-version
(2.3 (make-character lc-ltn1 char))
(2.4 (make-char charset-latin-iso8859-1 char))
(3.0 (make-char 'latin-iso8859-1 char))
((4.0 4.1 5.0) (if default-enable-multibyte-characters
(make-char 'latin-iso8859-1 char)
char))
(xemacs char)
(otherwise
(if (< char 256)
char
"~"))))
(error "~")))
[1]
<
http://savannah.gnu.org/cgi-bin/viewcvs/url/url/lisp/Attic/mule-sysdp.el?...
--
\/ille Skyttä
scop at
xemacs.org