2003-09-21  Yuuichi Teranishi  <teranisi@gohome.org>
 
+       * wl-summary.el (wl-summary-overview-entity-compare-by-from): Decode
+       entity field value.
+       (wl-summary-prefetch-msg): Ditto.
+       (wl-summary-print-message-with-ps-print): Ditto.
+
+2003-09-21  Yuuichi Teranishi  <teranisi@gohome.org>
+
        * wl-summary.el (wl-summary-detect-mark-position): Use generic msgdb
        for dummy entity.
        (wl-summary-insert-thread): Use elmo-message-entity-field.
 
   "Compare entity X and Y by from."
   (string<
    (wl-address-header-extract-address
-    (or (elmo-message-entity-field x 'from)
+    (or (elmo-message-entity-field x 'from t)
        wl-summary-no-from-message))
    (wl-address-header-extract-address
-    (or (elmo-message-entity-field y 'from)
+    (or (elmo-message-entity-field y 'from t)
        wl-summary-no-from-message))))
 
 (defun wl-summary-overview-entity-compare-by-subject (x y)
                               (or
                                (elmo-message-field
                                 wl-summary-buffer-elmo-folder
-                                number 'from)
+                                number 'from t)
                                "??")))))) " ]")
                        size))))
              (message ""))             ; flush.
                              (wl-summary-message-number))))
                   (wl-ps-subject
                    (and entity
-                        (or (elmo-message-entity-field entity 'subject)
+                        (or (elmo-message-entity-field entity 'subject t)
                             "")))
                   (wl-ps-from
                    (and entity
-                        (or (elmo-message-entity-field entity 'from) "")))
+                        (or (elmo-message-entity-field entity 'from t) "")))
                   (wl-ps-date
                    (and entity
                         (or (elmo-message-entity-field entity 'date) ""))))