Jan Vroonhof <vroonhof(a)math.ethz.ch> writes:
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.
Bad bad bad. defsubst'ing a function is almost always wrong. It
should be done _only_ when you know there's a non-negligible impact on
performance. mime-charset-to-coding-system doesn't sound like such a
case at all.