(gnus-article-decode-rfc1522): Use `mime-decode-header-in-buffer'
authormorioka <morioka>
Thu, 29 Oct 1998 11:24:54 +0000 (11:24 +0000)
committermorioka <morioka>
Thu, 29 Oct 1998 11:24:54 +0000 (11:24 +0000)
instead of `eword-decode-header'.
(gnus-article-display-message-with-encoded-word): Likewise.

lisp/gnus-art.el

index 9cb97df..9fc4012 100644 (file)
@@ -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)))