From b4edfa1d9422db33f9cc8a5c120419c678287b04 Mon Sep 17 00:00:00 2001 From: hayashi Date: Mon, 19 Jun 2000 08:17:54 +0000 Subject: [PATCH] * mime-edit.el (mime-edit-insert-file): Don't produce charset=x-unknown. --- ChangeLog | 5 +++++ mime-edit.el | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7d5c16d..f6481ff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2000-06-19 Yoshiki Hayashi + * mime-edit.el (mime-edit-insert-file): Don't produce + charset=x-unknown. + +2000-06-19 Yoshiki Hayashi + * EMY 1.13.7 is released. 2000-06-16 Yoshiki Hayashi diff --git a/mime-edit.el b/mime-edit.el index 7dc21fb..dcffc5f 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -1167,6 +1167,12 @@ Content-Transfer-Encoding and Content-Disposition headers." (setq candidate (if (listp candidates) (car candidates) candidates)) + (if (memq (static-if (featurep 'xemacs) + (coding-system-name candidate) + candidate) + '(undecided undecided-unix + undecided-dos undecided-mac)) + (setq candidate 'raw-text)) (setq eol (coding-system-eol-type candidate)) (cond ((eq eol (static-if (featurep 'xemacs) -- 1.7.10.4