From 9e4f0dad78ac1083089140deafe97d9bef7cc9c3 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 19 Oct 1998 11:35:28 +0000 Subject: [PATCH] * lisp/message.el (message-make-forward-subject): Use `eword-decode-field'. * lisp/nnheader.el (make-full-mail-header): Use `eword-decode-field'. --- lisp/message.el | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lisp/message.el b/lisp/message.el index e3c0872..3e7704b 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -3920,10 +3920,12 @@ the message." (let ((funcs message-make-forward-subject-function) (subject (if message-wash-forwarded-subjects (message-wash-subject - (or (eword-decode-unstructured-field-body - (message-fetch-field "Subject")) "")) - (or (eword-decode-unstructured-field-body - (message-fetch-field "Subject")) "")))) + (or (eword-decode-field + 'Subject (message-fetch-field "Subject")) + "")) + (or (eword-decode-field + 'Subject (message-fetch-field "Subject")) + "")))) ;; Make sure funcs is a list. (and funcs (not (listp funcs)) -- 1.7.10.4