2001-09-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
authorShengHuo ZHU <zsh@cs.rochester.edu>
Wed, 12 Sep 2001 22:54:48 +0000 (22:54 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Wed, 12 Sep 2001 22:54:48 +0000 (22:54 +0000)
* mm-util.el (mm-charset-synonym-alist): add windows-1250 so we
can read e-mails from Microsoft Outlook users not using ISO
8859-2 character set.

lisp/ChangeLog
lisp/mm-util.el

index 795f688..c95f71d 100644 (file)
@@ -1,3 +1,9 @@
+2001-09-12  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
+
+       * mm-util.el (mm-charset-synonym-alist): add windows-1250 so we
+       can read e-mails from Microsoft Outlook users not using ISO
+       8859-2 character set.
+
 2001-09-12 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
 
        * gnus-diary.el: Minor modifications to avoid warnings.
index 80c182a..3b7581d 100644 (file)
     ;; `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.")