Browse Source

Always get literal content of header fields

* org-wl.el (org-wl-message-field): Always get literal content of
header fields.
David Maus 14 years ago
parent
commit
eab115bf66
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org-wl.el

+ 1 - 1
lisp/org-wl.el

@@ -140,7 +140,7 @@ folder name determines the the folder type."
   "Return content of FIELD in ENTITY.
 FIELD is a symbol of a rfc822 message header field.
 ENTITY is a message entity."
-  (let ((content (elmo-message-entity-field entity field)))
+  (let ((content (elmo-message-entity-field entity field 'string)))
     (if (listp content) (car content) content)))
 
 (defun org-wl-store-link ()