From fbf8cb569d9b07aaf1e4fe7e854fac003df1ea0c Mon Sep 17 00:00:00 2001 From: yamaoka Date: Fri, 29 Oct 2004 01:06:47 +0000 Subject: [PATCH] Synch to No Gnus 200410290106. --- lisp/ChangeLog | 6 ++++++ lisp/mm-util.el | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2af9172..75c498b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2004-10-29 Katsumi Yamaoka + + * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than + iso-2022-jp even in the Japanese language environment. Suggested + by Jason Rumney . + 2004-10-28 Katsumi Yamaoka * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to diff --git a/lisp/mm-util.el b/lisp/mm-util.el index 50f0bca..6bd8af9 100644 --- a/lisp/mm-util.el +++ b/lisp/mm-util.el @@ -345,8 +345,10 @@ Valid elements include: (if (boundp 'current-language-environment) (let ((lang (symbol-value 'current-language-environment))) (cond ((string= lang "Japanese") - ;; Japanese users may prefer iso-2022-jp to shift_jis. - '(iso-2022-jp iso-2022-jp-2 shift_jis iso-8859-1 utf-8))))) + ;; Japanese users prefer iso-2022-jp to euc-japan or + ;; shift_jis, however iso-8859-1 should be used when + ;; there are only ASCII text and Latin-1 characters. + '(iso-8859-1 iso-2022-jp iso-2022-jp-2 shift_jis utf-8))))) "Preferred coding systems for encoding outgoing messages. More than one suitable coding system may be found for some text. -- 1.7.10.4