>>>> In <b4mirrao4t0.fsf(a)jpl.org> Katsumi Yamaoka
wrote:
So, changing
(defvar mm-coding-system-list nil)
to
(defvar mm-coding-system-list '(iso-8859-1))
in mm-util.el will solve at least the problem that Mike Kupfer
first brought up.
That's a wrong approach. It should be something like:
(defvar mm-coding-system-list nil)
(defun mm-get-coding-system-list ()
"Get the coding system list."
(or mm-coding-system-list
(setq mm-coding-system-list
(or (mm-coding-system-list) '(iso-8859-1)))))
Is there any coding systems which should be added to the
default value other than iso-8859-1 that XEmacs without mule
without file-coding supports?