Mercurial > emacs
changeset 23293:34dc05f50ea3
(rmail-decode-babyl-format): Recognize both
`undecided' and `undecided-unix'.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 21 Sep 1998 17:43:57 +0000 |
parents | 2076beb17834 |
children | ce2cac0f1682 |
files | lisp/mail/rmail.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/rmail.el Mon Sep 21 17:43:14 1998 +0000 +++ b/lisp/mail/rmail.el Mon Sep 21 17:43:57 1998 +0000 @@ -640,7 +640,8 @@ (unless (and coding-system (coding-system-p coding-system)) (setq coding-system (detect-coding-region from to t))) - (unless (eq coding-system 'undecided) + (unless (memq coding-system + '(undecided undecided-unix)) (decode-coding-region from to coding-system) (setq coding-system last-coding-system-used)) (set-buffer-modified-p modifiedp)