CRLFs in encoded word
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.mail.emacs.mime.japanese |
|---|---|
| Organization | Emacsen advocacy group |
| Message-ID | <[email protected]> |
eword-decode-unfolded-unstructured-field-body
CRLF encoded word MUA
Subject
T-gnus summary thread
summary
()
?
--- eword-decode.el~ 2003-12-14 21:55:26 +0000
+++ eword-decode.el 2004-04-15 09:47:55 +0000
@@ -110,7 +110,9 @@
(setq string (substring string end))
(setq ew t)
)
- (concat dest string)
+ (if must-unfold
+ (std11-unfold-string (concat dest string))
+ (concat dest string))
))
(defun eword-decode-structured-field-body (string
--
Katsumi Yamaoka <[email protected]>