From: Karl Heuer Date: Mon, 21 Sep 1998 17:43:57 +0000 (+0000) Subject: (rmail-decode-babyl-format): Recognize both X-Git-Tag: emacs-20.4~1656 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6ec74fd45abd30167de0c40e6ffd848a213f0e55;p=emacs.git (rmail-decode-babyl-format): Recognize both `undecided' and `undecided-unix'. --- diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index e0e5237133b..341565bc52a 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -640,7 +640,8 @@ Note: it means the file has no messages in it.\n\^_"))) (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)