diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/mm-util.el | 14 |
2 files changed, 13 insertions, 5 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 825a8bce003..e443056e034 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-07-16 NAKAJI Hiroyuki <nakaji@heimat.jp> (tiny change) | ||
| 2 | |||
| 3 | * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932. | ||
| 4 | |||
| 1 | 2006-07-14 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de> | 5 | 2006-07-14 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de> |
| 2 | 6 | ||
| 3 | * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix. | 7 | * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix. |
diff --git a/lisp/gnus/mm-util.el b/lisp/gnus/mm-util.el index 634d1f66675..26a1bf23e84 100644 --- a/lisp/gnus/mm-util.el +++ b/lisp/gnus/mm-util.el | |||
| @@ -204,19 +204,19 @@ the alias. Else windows-NUMBER is used." | |||
| 204 | `( | 204 | `( |
| 205 | ;; Not in XEmacs, but it's not a proper MIME charset anyhow. | 205 | ;; Not in XEmacs, but it's not a proper MIME charset anyhow. |
| 206 | ,@(unless (mm-coding-system-p 'x-ctext) | 206 | ,@(unless (mm-coding-system-p 'x-ctext) |
| 207 | '((x-ctext . ctext))) | 207 | '((x-ctext . ctext))) |
| 208 | ;; ISO-8859-15 is very similar to ISO-8859-1. But it's _different_! | 208 | ;; ISO-8859-15 is very similar to ISO-8859-1. But it's _different_! |
| 209 | ,@(unless (mm-coding-system-p 'iso-8859-15) | 209 | ,@(unless (mm-coding-system-p 'iso-8859-15) |
| 210 | '((iso-8859-15 . iso-8859-1))) | 210 | '((iso-8859-15 . iso-8859-1))) |
| 211 | ;; BIG-5HKSCS is similar to, but different than, BIG-5. | 211 | ;; BIG-5HKSCS is similar to, but different than, BIG-5. |
| 212 | ,@(unless (mm-coding-system-p 'big5-hkscs) | 212 | ,@(unless (mm-coding-system-p 'big5-hkscs) |
| 213 | '((big5-hkscs . big5))) | 213 | '((big5-hkscs . big5))) |
| 214 | ;; Windows-1252 is actually a superset of Latin-1. See also | 214 | ;; Windows-1252 is actually a superset of Latin-1. See also |
| 215 | ;; `gnus-article-dumbquotes-map'. | 215 | ;; `gnus-article-dumbquotes-map'. |
| 216 | ,@(unless (mm-coding-system-p 'windows-1252) | 216 | ,@(unless (mm-coding-system-p 'windows-1252) |
| 217 | (if (mm-coding-system-p 'cp1252) | 217 | (if (mm-coding-system-p 'cp1252) |
| 218 | '((windows-1252 . cp1252)) | 218 | '((windows-1252 . cp1252)) |
| 219 | '((windows-1252 . iso-8859-1)))) | 219 | '((windows-1252 . iso-8859-1)))) |
| 220 | ;; Windows-1250 is a variant of Latin-2 heavily used by Microsoft | 220 | ;; Windows-1250 is a variant of Latin-2 heavily used by Microsoft |
| 221 | ;; Outlook users in Czech republic. Use this to allow reading of their | 221 | ;; Outlook users in Czech republic. Use this to allow reading of their |
| 222 | ;; e-mails. cp1250 should be defined by M-x codepage-setup. | 222 | ;; e-mails. cp1250 should be defined by M-x codepage-setup. |
| @@ -232,6 +232,10 @@ the alias. Else windows-NUMBER is used." | |||
| 232 | (if (mm-coding-system-p 'cp949) | 232 | (if (mm-coding-system-p 'cp949) |
| 233 | '((ks_c_5601-1987 . cp949)) | 233 | '((ks_c_5601-1987 . cp949)) |
| 234 | '((ks_c_5601-1987 . euc-kr)))) | 234 | '((ks_c_5601-1987 . euc-kr)))) |
| 235 | ;; Windows-31J is Windows Codepage 932. | ||
| 236 | ,@(if (and (not (mm-coding-system-p 'windows-31j)) | ||
| 237 | (mm-coding-system-p 'cp932)) | ||
| 238 | '((windows-31j . cp932))) | ||
| 235 | ) | 239 | ) |
| 236 | "A mapping from unknown or invalid charset names to the real charset names.") | 240 | "A mapping from unknown or invalid charset names to the real charset names.") |
| 237 | 241 | ||