]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve flatten-tree performance
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 17 Dec 2018 17:54:14 +0000 (09:54 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 17 Dec 2018 18:26:15 +0000 (10:26 -0800)
* lisp/subr.el (flatten-tree): Improve performance by calling
‘cons’ once rather than twice when a cons cell is popped.

lisp/subr.el

index 7a7c175db4a3220c56809c22b232ceb912bb6108..3dec6cf66c3ec6ead4bb686f10953f4af5453048 100644 (file)
@@ -5460,14 +5460,14 @@ elements are removed.
 TREE can be anything that can be made into a list.  For each
 element in TREE, if it is a cons cell return its car
 recursively.  Otherwise return the element."
-    (let (elems)
-    (setq tree (list tree))
-    (while (let ((elem (pop tree)))
-             (cond ((consp elem)
-                    (setq tree (cons (car elem) (cons (cdr elem) tree))))
-                   (elem
-                    (push elem elems)))
-             tree))
+  (let (elems)
+    (while (consp tree)
+      (let ((elem (pop tree)))
+        (while (consp elem)
+          (push (cdr elem) tree)
+          (setq elem (car elem)))
+        (if elem (push elem elems))))
+    (if tree (push tree elems))
     (nreverse elems)))
 
 ;; Technically, `flatten-list' is a misnomer, but we provide it here