+1998-08-26 Tanaka Akira <akr@jaist.ac.jp>
+
+ * DOODLE-TIPS (gnus-structured-field-decoder): Use
+ `eword-decode-and-unfold-structured-field'.
+ (gnus-unstructured-field-decoder): Use
+ `eword-decode-unstructured-field-body'.
+
1998-08-25 Tanaka Akira <akr@jaist.ac.jp>
* ew-bq.el (ew-ccl-untrusted-eof-block): Check by coding system instead
because DOODLE cannot decide whether an atom is in phrase or not without
field name information.
-(setq gnus-unstructured-field-decoder
+(setq gnus-structured-field-decoder
(lambda (string)
(if (fboundp 'ew-decode-field)
(let ((ew-ignore-76bytes-limit t))
- (ew-cut-cr-lf (ew-decode-field "Subject" (ew-lf-crlf-to-crlf string))))
+ (ew-cut-cr-lf (ew-decode-field "From" (ew-lf-crlf-to-crlf string))))
(eword-decode-and-unfold-structured-field string))))
-(setq gnus-structured-field-decoder
+(setq gnus-unstructured-field-decoder
(lambda (string)
(if (fboundp 'ew-decode-field)
(let ((ew-ignore-76bytes-limit t))
- (ew-cut-cr-lf (ew-decode-field "From" (ew-lf-crlf-to-crlf string))))
+ (ew-cut-cr-lf (ew-decode-field "Subject" (ew-lf-crlf-to-crlf string))))
(eword-decode-unstructured-field-body (std11-unfold-string string) 'must-unfold))))
* Ignore warnings about args-eword-* when byte-compiling.