* wl-summary.el (wl-summary-overview-entity-compare-by-from): Decode
authorteranisi <teranisi>
Sun, 21 Sep 2003 15:12:55 +0000 (15:12 +0000)
committerteranisi <teranisi>
Sun, 21 Sep 2003 15:12:55 +0000 (15:12 +0000)
entity field value.
(wl-summary-prefetch-msg): Ditto.
(wl-summary-print-message-with-ps-print): Ditto.

wl/ChangeLog
wl/wl-summary.el

index c17582b..4190459 100644 (file)
@@ -1,5 +1,12 @@
 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.
index f791318..e188ed2 100644 (file)
@@ -812,10 +812,10 @@ Entering Folder mode calls the value of `wl-summary-mode-hook'."
   "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)
@@ -1354,7 +1354,7 @@ If ARG is non-nil, checking is omitted."
                               (or
                                (elmo-message-field
                                 wl-summary-buffer-elmo-folder
-                                number 'from)
+                                number 'from t)
                                "??")))))) " ]")
                        size))))
              (message ""))             ; flush.
@@ -4412,11 +4412,11 @@ If ASK-CODING is non-nil, coding-system for the message is asked."
                              (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) ""))))