From 6ec74fd45abd30167de0c40e6ffd848a213f0e55 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 21 Sep 1998 17:43:57 +0000 Subject: [PATCH] (rmail-decode-babyl-format): Recognize both `undecided' and `undecided-unix'. --- lisp/mail/rmail.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.39.2