aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1998-09-21 17:43:57 +0000
committerKarl Heuer1998-09-21 17:43:57 +0000
commit6ec74fd45abd30167de0c40e6ffd848a213f0e55 (patch)
tree6c6749ad4c06a70b5e567bfd0c3c90a551b81b60
parent5b2a53165085eddd35b9ef812aa7468cb643f2fd (diff)
downloademacs-6ec74fd45abd30167de0c40e6ffd848a213f0e55.tar.gz
emacs-6ec74fd45abd30167de0c40e6ffd848a213f0e55.zip
(rmail-decode-babyl-format): Recognize both
`undecided' and `undecided-unix'.
-rw-r--r--lisp/mail/rmail.el3
1 files changed, 2 insertions, 1 deletions
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\^_")))
640 (unless (and coding-system 640 (unless (and coding-system
641 (coding-system-p coding-system)) 641 (coding-system-p coding-system))
642 (setq coding-system (detect-coding-region from to t))) 642 (setq coding-system (detect-coding-region from to t)))
643 (unless (eq coding-system 'undecided) 643 (unless (memq coding-system
644 '(undecided undecided-unix))
644 (decode-coding-region from to coding-system) 645 (decode-coding-region from to coding-system)
645 (setq coding-system last-coding-system-used)) 646 (setq coding-system last-coding-system-used))
646 (set-buffer-modified-p modifiedp) 647 (set-buffer-modified-p modifiedp)