From e70da2eb95abbe58981f8395f006c49d7a93365b Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 23 Mar 1998 11:44:45 +0000 Subject: [PATCH] * eword-decode.el (eword-decode-header): Set default-mime-charset when calling `eword-decode-region'. --- eword-decode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eword-decode.el b/eword-decode.el index 897b942..9a0b946 100644 --- a/eword-decode.el +++ b/eword-decode.el @@ -474,7 +474,8 @@ If SEPARATOR is not nil, it is used as header separator." (save-restriction (narrow-to-region beg (1+ end)) (goto-char p) - (eword-decode-region beg (point-max) 'unfold) + (let ((default-mime-charset default-charset)) + (eword-decode-region beg (point-max) 'unfold)) (goto-char (point-max)) ))))) (eword-decode-region (point-min) (point-max) t) -- 1.7.10.4