From 9e4a1fe8bcc6b60ca3c442f5342866cdbdf40ab6 Mon Sep 17 00:00:00 2001 From: hmurata Date: Wed, 22 Oct 2003 01:44:27 +0000 Subject: [PATCH] (elmo-msgdb-create-message-entity-from-buffer): Unfold date value. --- elmo/ChangeLog | 5 +++++ elmo/modb-entity.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/elmo/ChangeLog b/elmo/ChangeLog index 2f17b4e..fc25554 100644 --- a/elmo/ChangeLog +++ b/elmo/ChangeLog @@ -1,3 +1,8 @@ +2003-10-22 Hiroya Murata + + * modb-entity.el (elmo-msgdb-create-message-entity-from-buffer): + Unfold date value. + 2003-10-21 Hiroya Murata * elmo-spam.el (elmo-spam-save-status): New API. diff --git a/elmo/modb-entity.el b/elmo/modb-entity.el index e7dccfb..43aa235 100644 --- a/elmo/modb-entity.el +++ b/elmo/modb-entity.el @@ -223,7 +223,7 @@ Header region is supposed to be narrowed.") (elmo-mime-string (or (elmo-field-body "subject") elmo-no-subject)) "\t" " ") - date (elmo-field-body "date") + date (std11-unfold-string (elmo-field-body "date")) to (mapconcat 'identity (elmo-multiple-field-body "to") ",") cc (mapconcat 'identity (elmo-multiple-field-body "cc") ",")) (unless (elmo-msgdb-message-entity-field handler entity 'size) -- 1.7.10.4