# HG changeset patch # User Gerd Moellmann # Date 1000825164 0 # Node ID b7c0bc16b2508c17225d0111a1e0dd982416ec8d # Parent 96fc00b78011e3c0c908f77ab2c874b16b4c4c4d (mm-charset-synonym-alist): Add windows-1250 so we can read e-mails from Microsoft Outlook users not using ISO 8859-2 character set. diff -r 96fc00b78011 -r b7c0bc16b250 lisp/gnus/mm-util.el --- a/lisp/gnus/mm-util.el Tue Sep 18 14:29:11 2001 +0000 +++ b/lisp/gnus/mm-util.el Tue Sep 18 14:59:24 2001 +0000 @@ -143,6 +143,11 @@ ;; `gnus-article-dumbquotes-map'. ,(unless (mm-coding-system-p 'windows-1252) ; should be defined eventually '(windows-1252 . iso-8859-1)) + ;; Windows-1250 is a variant of Latin-2 heavily used by Microsoft + ;; Outlook users in Czech republic. Use this to allow reading of their + ;; e-mails. cp1250 should be defined by M-x codepage-setup. + ,(unless (mm-coding-system-p 'windows-1250) ; should be defined eventually + '(windows-1250 . cp1250)) (x-ctext . ctext)) "A mapping from invalid charset names to the real charset names.")