diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/mm-encode.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 8beb9243c8f..292bebf64e0 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-02-19 ShengHuo ZHU <zsh@cs.rochester.edu> | ||
| 2 | |||
| 3 | * mm-encode.el (mm-content-transfer-encoding-defaults): Set | ||
| 4 | default to base64. Add application/emacs-lisp. | ||
| 5 | |||
| 1 | 2002-02-16 ShengHuo ZHU <zsh@cs.rochester.edu> | 6 | 2002-02-16 ShengHuo ZHU <zsh@cs.rochester.edu> |
| 2 | 7 | ||
| 3 | * gnus-msg.el (gnus-post-method): Fix doc. | 8 | * gnus-msg.el (gnus-post-method): Fix doc. |
diff --git a/lisp/gnus/mm-encode.el b/lisp/gnus/mm-encode.el index 40a256ddf0e..165b716ec1a 100644 --- a/lisp/gnus/mm-encode.el +++ b/lisp/gnus/mm-encode.el | |||
| @@ -35,8 +35,9 @@ | |||
| 35 | ("text/.*" qp-or-base64) | 35 | ("text/.*" qp-or-base64) |
| 36 | ("message/rfc822" 8bit) | 36 | ("message/rfc822" 8bit) |
| 37 | ("application/emacs-lisp" 8bit) | 37 | ("application/emacs-lisp" 8bit) |
| 38 | ("application/x-emacs-lisp" 8bit) | ||
| 38 | ("application/x-patch" 8bit) | 39 | ("application/x-patch" 8bit) |
| 39 | (".*" qp-or-base64)) | 40 | (".*" base64)) |
| 40 | "Alist of regexps that match MIME types and their encodings. | 41 | "Alist of regexps that match MIME types and their encodings. |
| 41 | If the encoding is `qp-or-base64', then either quoted-printable | 42 | If the encoding is `qp-or-base64', then either quoted-printable |
| 42 | or base64 will be used, depending on what is more efficient.") | 43 | or base64 will be used, depending on what is more efficient.") |