* wl-address.el (wl-address-make-completion-entry): Extracted from
authoryoichi <yoichi>
Fri, 1 Nov 2002 04:46:54 +0000 (04:46 +0000)
committeryoichi <yoichi>
Fri, 1 Nov 2002 04:46:54 +0000 (04:46 +0000)
`wl-address-make-completion-list'.
(wl-address-enable-strict-loading): New variable.
(wl-address-make-completion-list): Revive petname duplication
inquiry, and enable it if `wl-address-enable-strict-loading'.
(Note: this should be fixed in future. Ref: [wl:10773],[wl:10455])

This change will be go into wl-2_10 too.

wl/ChangeLog
wl/wl-address.el

index 1f5c1f9..2d747be 100644 (file)
@@ -1,3 +1,12 @@
+2002-11-01  Tomotaka SUWA  <cooper@saitama.fujimic.fujisankei-g.co.jp>
+
+       * wl-address.el (wl-address-make-completion-entry): Extracted from
+       `wl-address-make-completion-list'.
+       (wl-address-enable-strict-loading): New variable.
+       (wl-address-make-completion-list): Revive petname duplication
+       inquiry, and enable it if `wl-address-enable-strict-loading'.
+       (Note: this should be fixed in future. Ref: [wl:10773],[wl:10455])
+
 2002-10-29  Yuuichi Teranishi  <teranisi@gohome.org>
 
        * wl-message.el (wl-message-get-original-buffer): Avoid
index 2ca14ba..dfa2a72 100644 (file)
@@ -46,6 +46,7 @@
 (defvar wl-address-list nil)
 (defvar wl-address-completion-list nil)
 (defvar wl-address-petname-hash nil)
+(defvar wl-address-enable-strict-loading t)
 
 (defvar wl-address-ldap-search-hash nil)
 
@@ -288,28 +289,33 @@ Matched address lists are append to CL."
       (setq addr-tuple (car address-list))
       (setq cl
            (cons
-            (cons (nth 0 addr-tuple)
-                  (if (or (string= (nth 2 addr-tuple) "")
-                          (string-match ".*:.*;$" (nth 0 addr-tuple)))
-                      (nth 0 addr-tuple)
-                    (concat
-                     (wl-address-quote-specials
-                      (nth 2 addr-tuple)) " <"(nth 0 addr-tuple)">")))
+            (wl-address-make-completion-entry 0 addr-tuple)
             cl))
       ;; nickname completion.
-      (setq cl
-           (cons
-            (cons (nth 1 addr-tuple)
-                  (if (or (string= (nth 2 addr-tuple) "")
-                          (string-match ".*:.*;$" (nth 0 addr-tuple)))
-                      (nth 0 addr-tuple)
-                    (concat
-                     (wl-address-quote-specials
-                      (nth 2 addr-tuple)) " <"(nth 0 addr-tuple)">")))
-            cl))
+      (if wl-address-enable-strict-loading
+         (unless (or (equal (nth 1 addr-tuple) (nth 0 addr-tuple))
+                     ;; already exists
+                     (assoc (nth 1 addr-tuple) cl))
+           (setq cl
+                 (cons
+                  (wl-address-make-completion-entry 1 addr-tuple)
+                  cl)))
+       (setq cl
+             (cons
+              (wl-address-make-completion-entry 1 addr-tuple)
+              cl)))
       (setq address-list (cdr address-list)))
     cl))
 
+(defun wl-address-make-completion-entry (index addr-tuple)
+  (cons (nth index addr-tuple)
+       (if (or (string= (nth 2 addr-tuple) "")
+               (string-match ".*:.*;$" (nth 0 addr-tuple)))
+           (nth 0 addr-tuple)
+         (concat
+          (wl-address-quote-specials
+           (nth 2 addr-tuple)) " <"(nth 0 addr-tuple)">"))))
+
 (defun wl-complete-field-body-or-tab ()
   (interactive)
   (let ((case-fold-search t)