jerry(a)cs.ucsb.edu (Jerry James) writes:
(defvar mime-article/coding-system-alist
(list (cons 'mh-show-mode *noconv*)
(cons t (mime-charset-to-coding-system default-mime-charset))
))
The problem seems to be that mime-charset-to-coding-system is a
defsubst which means that bytecompiling will inline it. However that
is wrong in compatibility code. The packages are probably compiled
using a Mule XEmacs as you guessed so the mule version gets in to the
.elc. Recompiling _should_ work.
If you 'rm lisp/tm/*.elc' and then M-x byte-recompile-directory, does
the problem get away?
Jan