Changeset 4131 for trunk/lisp/gnus/mm-util.el
- Timestamp:
- 07/29/06 07:48:34 (2 years ago)
- Files:
-
- trunk/lisp/gnus/mm-util.el (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/gnus/mm-util.el
r4098 r4131 205 205 ;; Not in XEmacs, but it's not a proper MIME charset anyhow. 206 206 ,@(unless (mm-coding-system-p 'x-ctext) 207 '((x-ctext . ctext)))207 '((x-ctext . ctext))) 208 208 ;; ISO-8859-15 is very similar to ISO-8859-1. But it's _different_! 209 209 ,@(unless (mm-coding-system-p 'iso-8859-15) 210 '((iso-8859-15 . iso-8859-1)))210 '((iso-8859-15 . iso-8859-1))) 211 211 ;; BIG-5HKSCS is similar to, but different than, BIG-5. 212 212 ,@(unless (mm-coding-system-p 'big5-hkscs) … … 215 215 ;; `gnus-article-dumbquotes-map'. 216 216 ,@(unless (mm-coding-system-p 'windows-1252) 217 (if (mm-coding-system-p 'cp1252)218 '((windows-1252 . cp1252))219 '((windows-1252 . iso-8859-1))))217 (if (mm-coding-system-p 'cp1252) 218 '((windows-1252 . cp1252)) 219 '((windows-1252 . iso-8859-1)))) 220 220 ;; Windows-1250 is a variant of Latin-2 heavily used by Microsoft 221 221 ;; Outlook users in Czech republic. Use this to allow reading of their … … 233 233 '((ks_c_5601-1987 . cp949)) 234 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 240 "A mapping from unknown or invalid charset names to the real charset names.")
