]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/subr.el (delete-dups): Use a hash table
authorOleh Krehel <ohwoeowho@gmail.com>
Wed, 6 May 2015 13:21:23 +0000 (15:21 +0200)
committerOleh Krehel <ohwoeowho@gmail.com>
Wed, 6 May 2015 13:52:06 +0000 (15:52 +0200)
* lisp/subr.el (delete-dups): When there are more than 100 candidates,
  use a hash table. This can result in ~500 times speed-up for typical
  collections of size 5000, like that of `load-library'.

lisp/subr.el

index 0fec29c14041572a6ef7b9b31cb6885146bd83e4..591980d03fa09ca88bd944e71ade84c1f2719f36 100644 (file)
@@ -417,11 +417,19 @@ If N is omitted or nil, remove the last element."
 Store the result in LIST and return it.  LIST must be a proper list.
 Of several `equal' occurrences of an element in LIST, the first
 one is kept."
-  (let ((tail list))
-    (while tail
-      (setcdr tail (delete (car tail) (cdr tail)))
-      (setq tail (cdr tail))))
-  list)
+  (if (> (length list) 100)
+      (let ((hash (make-hash-table :test #'equal))
+            res)
+        (dolist (elt list)
+          (unless (gethash elt hash)
+            (puthash elt elt hash)
+            (push elt res)))
+        (nreverse res))
+    (let ((tail list))
+      (while tail
+        (setcdr tail (delete (car tail) (cdr tail)))
+        (setq tail (cdr tail))))
+    list))
 
 ;; See http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00204.html
 (defun delete-consecutive-dups (list &optional circular)