(select-safe-coding-system): If

:mime-charset property of a coding system is not equal to that
coding system, don't show that :mime-charset name.
This commit is contained in:
Kenichi Handa 2002-10-09 06:13:57 +00:00
parent e3d8eb8c66
commit ae748897d2

View file

@ -619,7 +619,8 @@ and TO is ignored."
mime-charset)
(while l
(setq mime-charset (coding-system-get (car l) :mime-charset))
(if (and mime-charset (coding-system-p mime-charset))
(if (and mime-charset (coding-system-p mime-charset)
(coding-system-equal (car l) mime-charset))
(setcar l mime-charset))
(setq l (cdr l))))