the address is a group list.
* wl-addrmgr.el (wl-addrmgr-mark-check): Ditto.
+2002-01-19  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
+
+       * wl-address.el (wl-address-make-completion-list): Check whether
+       the address is a group list.
+       * wl-addrmgr.el (wl-addrmgr-mark-check): Ditto.
+
 2002-01-19  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
 
        * wl-folder.el (wl-folder-check-one-entity): Fixed problem;
 
        * wl-score.el (wl-summary-score-update-all-lines): Likewise.
 
-2002-01-20  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
+2002-01-19  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
 
        * wl-address.el (wl-address-make-completion-list): Do not enclose
        address by " <" and ">" if associated realname is "".
 
       (setq cl
            (cons
             (cons (nth 0 addr-tuple)
-                  (if (string= (nth 2 addr-tuple) "")
+                  (if (or (string= (nth 2 addr-tuple) "")
+                          (string-match ".*:.*;$" (nth 0 addr-tuple)))
                       (nth 0 addr-tuple)
                     (concat
                      (wl-address-quote-specials
        (setq cl
              (cons
               (cons (nth 1 addr-tuple)
-                    (if (string= (nth 2 addr-tuple) "")
+                    (if (or (string= (nth 2 addr-tuple) "")
+                            (string-match ".*:.*;$" (nth 0 addr-tuple)))
                         (nth 0 addr-tuple)
                       (concat
                        (wl-address-quote-specials
 
        (cond
         ((string= mark "To:")
          (setq to-list (cons
-                        (if (and full (not (string= realname "")))
+                        (if (and full
+                                 (not (or (string= realname "")
+                                          (string-match ".*:.*;$" addr))))
                             (concat
                              (wl-address-quote-specials realname)
                              " <" addr">")
                         to-list)))
         ((string= mark "Cc:")
          (setq cc-list (cons
-                        (if (and full (not (string= realname "")))
+                        (if (and full
+                                 (not (or (string= realname "")
+                                          (string-match ".*:.*;$" addr))))
                             (concat
                              (wl-address-quote-specials realname)
                              " <" addr">")
                         cc-list)))
         ((string= mark "Bcc:")
          (setq bcc-list (cons
-                         (if (and full (not (string= realname "")))
+                         (if (and full
+                                  (not (or (string= realname "")
+                                           (string-match ".*:.*;$" addr))))
                              (concat
                               (wl-address-quote-specials realname)
                               " <" addr">")