]> code.delx.au - gnu-emacs/commitdiff
Fix `gnus-union' so as to behave like `cl-union'
authorKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 23 Dec 2015 23:08:55 +0000 (23:08 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 23 Dec 2015 23:08:55 +0000 (23:08 +0000)
* lisp/gnus/gnus-group.el (gnus-group-prepare-flat):
Make gnus-union use `equal' to compare items in lists.

* lisp/gnus/gnus-util.el (gnus-union):
Make it behave like cl-union partially.

lisp/gnus/gnus-group.el
lisp/gnus/gnus-util.el

index b1a4933ebf15b7ad25df86812b15e13501a64959..9f272f4258785d7275cc337840e4d0a72af42eff 100644 (file)
@@ -1396,7 +1396,8 @@ if it is a string, only list groups matching REGEXP."
       (gnus-group-prepare-flat-list-dead
        (gnus-union
        not-in-list
-       (setq gnus-killed-list (sort gnus-killed-list 'string<)))
+       (setq gnus-killed-list (sort gnus-killed-list 'string<))
+       :test 'equal)
        gnus-level-killed ?K regexp))
 
     (gnus-group-set-mode-line)
index 40e2dcf92fdd858ce9689fcac296e6c3165b759a..6759c0715b79ee6f427a14217b4c82b43ecda1a6 100644 (file)
@@ -1372,18 +1372,25 @@ Return the modified alist."
 
 (if (fboundp 'union)
     (defalias 'gnus-union 'union)
-  (defun gnus-union (l1 l2)
-    "Set union of lists L1 and L2."
+  (defun gnus-union (l1 l2 &rest keys)
+    "Set union of lists L1 and L2.
+If KEYS contains the `:test' and `equal' pair, use `equal' to compare
+items in lists, otherwise use `eq'."
     (cond ((null l1) l2)
          ((null l2) l1)
          ((equal l1 l2) l1)
          (t
           (or (>= (length l1) (length l2))
               (setq l1 (prog1 l2 (setq l2 l1))))
-          (while l2
-            (or (member (car l2) l1)
-                (push (car l2) l1))
-            (pop l2))
+          (if (eq 'equal (plist-get keys :test))
+              (while l2
+                (or (member (car l2) l1)
+                    (push (car l2) l1))
+                (pop l2))
+            (while l2
+              (or (memq (car l2) l1)
+                  (push (car l2) l1))
+              (pop l2)))
           l1))))
 
 (declare-function gnus-add-text-properties "gnus"