]> code.delx.au - gnu-emacs/commitdiff
(rmail-decode-babyl-format): Recognize both
authorKarl Heuer <kwzh@gnu.org>
Mon, 21 Sep 1998 17:43:57 +0000 (17:43 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 21 Sep 1998 17:43:57 +0000 (17:43 +0000)
`undecided' and `undecided-unix'.

lisp/mail/rmail.el

index e0e5237133b0489e2ef14bac8bb5a5ff34b29826..341565bc52a56cf58c66e9d753c63dd0d795f792 100644 (file)
@@ -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)