From: morioka Date: Thu, 29 Oct 1998 11:24:54 +0000 (+0000) Subject: (gnus-article-decode-rfc1522): Use `mime-decode-header-in-buffer' X-Git-Tag: chao-gnus-6_12_1~2 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=09a8bede63e78df0cf45025920189a7ebe488310;p=elisp%2Fgnus.git- (gnus-article-decode-rfc1522): Use `mime-decode-header-in-buffer' instead of `eword-decode-header'. (gnus-article-display-message-with-encoded-word): Likewise. --- diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el index 9cb97df..9fc4012 100644 --- a/lisp/gnus-art.el +++ b/lisp/gnus-art.el @@ -964,7 +964,7 @@ characters to translate to." (let ((charset (save-excursion (set-buffer gnus-summary-buffer) default-mime-charset))) - (eword-decode-header charset) + (mime-decode-header-in-buffer charset) ))) (defun article-hide-pgp (&optional arg) @@ -2000,7 +2000,7 @@ commands: (make-local-variable 'default-mime-charset) (setq default-mime-charset charset) (let (buffer-read-only) - (eword-decode-header charset) + (mime-decode-header-in-buffer charset) (goto-char (point-min)) (if (search-forward "\n\n" nil t) (decode-mime-charset-region (match-end 0) (point-max) charset)))