# HG changeset patch # User Karl Heuer # Date 906399837 0 # Node ID 34dc05f50ea3673e8f4c418ed7b4c48a5d21215c # Parent 2076beb17834d5c5e9ccf15a821f3240f6263a3a (rmail-decode-babyl-format): Recognize both `undecided' and `undecided-unix'. diff -r 2076beb17834 -r 34dc05f50ea3 lisp/mail/rmail.el --- 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)