diff options
| author | ShengHuo ZHU | 2001-11-01 15:29:49 +0000 |
|---|---|---|
| committer | ShengHuo ZHU | 2001-11-01 15:29:49 +0000 |
| commit | 72eb5fc741e1b76818f4f405a6b0c1d087a6287c (patch) | |
| tree | 2ea5634f42a8be77d0b18bcdfca9433172a61f4e | |
| parent | 8b8bd9c6eda85dd4c496dc0e4f70af28b13dbcbb (diff) | |
| download | emacs-72eb5fc741e1b76818f4f405a6b0c1d087a6287c.tar.gz emacs-72eb5fc741e1b76818f4f405a6b0c1d087a6287c.zip | |
2001-11-01 ShengHuo ZHU <zsh@cs.rochester.edu>
* mm-util.el (mm-charset-synonym-alist): Revert (some).
| -rw-r--r-- | lisp/gnus/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/gnus/mm-util.el | 31 |
2 files changed, 21 insertions, 16 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 14138f18820..9cef3e87de2 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,4 +1,8 @@ | |||
| 1 | 2001-10-30 ShengHuo ZHU <zsh@cs.rochester.edu> | 1 | 2001-11-01 ShengHuo ZHU <zsh@cs.rochester.edu> |
| 2 | |||
| 3 | * mm-util.el (mm-charset-synonym-alist): Revert (some). | ||
| 4 | |||
| 5 | 2001-10-30 ShengHuo ZHU <zsh@cs.rochester.edu> | ||
| 2 | 6 | ||
| 3 | * mm-util.el, nnultimate.el, nnweb.el, nnslashdot.el: Sync with | 7 | * mm-util.el, nnultimate.el, nnweb.el, nnslashdot.el: Sync with |
| 4 | the Gnus CVS. | 8 | the Gnus CVS. |
diff --git a/lisp/gnus/mm-util.el b/lisp/gnus/mm-util.el index 69823c43d1c..35229591c7d 100644 --- a/lisp/gnus/mm-util.el +++ b/lisp/gnus/mm-util.el | |||
| @@ -108,28 +108,29 @@ | |||
| 108 | (defvar mm-charset-synonym-alist | 108 | (defvar mm-charset-synonym-alist |
| 109 | `( | 109 | `( |
| 110 | ;; Perfectly fine? A valid MIME name, anyhow. | 110 | ;; Perfectly fine? A valid MIME name, anyhow. |
| 111 | ,(unless (mm-coding-system-p 'big5) | 111 | ,@(unless (mm-coding-system-p 'big5) |
| 112 | '(big5 . cn-big5)) | 112 | '((big5 . cn-big5))) |
| 113 | ;; Not in XEmacs, but it's not a proper MIME charset anyhow. | 113 | ;; Not in XEmacs, but it's not a proper MIME charset anyhow. |
| 114 | ,(unless (mm-coding-system-p 'x-ctext) | 114 | ,@(unless (mm-coding-system-p 'x-ctext) |
| 115 | '(x-ctext . ctext)) | 115 | '((x-ctext . ctext))) |
| 116 | ;; Apparently not defined in Emacs 20, but is a valid MIME name. | 116 | ;; Apparently not defined in Emacs 20, but is a valid MIME name. |
| 117 | ,(unless (mm-coding-system-p 'gb2312) | 117 | ,@(unless (mm-coding-system-p 'gb2312) |
| 118 | '(gb2312 . cn-gb-2312)) | 118 | '((gb2312 . cn-gb-2312))) |
| 119 | ;; ISO-8859-15 is very similar to ISO-8859-1. | ||
| 120 | ,@(unless (mm-coding-system-p 'iso-8859-15) ; Emacs 21 defines it. | ||
| 121 | '((iso-8859-15 . iso-8859-1))) | ||
| 119 | ;; Windows-1252 is actually a superset of Latin-1. See also | 122 | ;; Windows-1252 is actually a superset of Latin-1. See also |
| 120 | ;; `gnus-article-dumbquotes-map'. | 123 | ;; `gnus-article-dumbquotes-map'. |
| 121 | ;;,(unless (mm-coding-system-p 'windows-1252) | 124 | ,@(unless (mm-coding-system-p 'windows-1252) |
| 122 | ; should be defined eventually | 125 | (if (mm-coding-system-p 'cp1252) |
| 123 | ;; '(windows-1252 . iso-8859-1)) | 126 | '((windows-1252 . cp1252)) |
| 124 | ;; ISO-8859-15 is very similar to ISO-8859-1. | 127 | '((windows-1252 . iso-8859-1)))) |
| 125 | ;;,(unless (mm-coding-system-p 'iso-8859-15) ; Emacs 21 defines it. | ||
| 126 | ;; '(iso-8859-15 . iso-8859-1)) | ||
| 127 | ;; Windows-1250 is a variant of Latin-2 heavily used by Microsoft | 128 | ;; Windows-1250 is a variant of Latin-2 heavily used by Microsoft |
| 128 | ;; Outlook users in Czech republic. Use this to allow reading of their | 129 | ;; Outlook users in Czech republic. Use this to allow reading of their |
| 129 | ;; e-mails. cp1250 should be defined by M-x codepage-setup. | 130 | ;; e-mails. cp1250 should be defined by M-x codepage-setup. |
| 130 | ;;,(unless (mm-coding-system-p 'windows-1250) | 131 | ,@(if (and (not (mm-coding-system-p 'windows-1250)) |
| 131 | ; should be defined eventually | 132 | (mm-coding-system-p 'cp1250)) |
| 132 | ;; '(windows-1250 . cp1250)) | 133 | '((windows-1250 . cp1250))) |
| 133 | ) | 134 | ) |
| 134 | "A mapping from invalid charset names to the real charset names.") | 135 | "A mapping from invalid charset names to the real charset names.") |
| 135 | 136 | ||