mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-24 22:07:36 +00:00
(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:
parent
e3d8eb8c66
commit
ae748897d2
1 changed files with 2 additions and 1 deletions
|
|
@ -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))))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue