emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/dash 4acab5d 11/14: Use reverse instead of explicit ite


From: Phillip Lord
Subject: [elpa] externals/dash 4acab5d 11/14: Use reverse instead of explicit iteration.
Date: Sun, 04 Oct 2015 12:01:03 +0000

branch: externals/dash
commit 4acab5d751ad411ed637e8a46dc3280db0ddcabd
Author: Matus Goljer <address@hidden>
Commit: Matus Goljer <address@hidden>

    Use reverse instead of explicit iteration.
---
 dash.el |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/dash.el b/dash.el
index 951ca10..6ecf100 100644
--- a/dash.el
+++ b/dash.el
@@ -1783,8 +1783,7 @@ Alias: `-uniq'"
   "Return a new list containing the elements of LIST1 and elements of LIST2 
that are not in LIST1.
 The test for equality is done with `equal',
 or with `-compare-fn' if that's non-nil."
-  (let (result)
-    (--each list (!cons it result))
+  (let ((result (reverse list)))
     (--each list2 (unless (-contains? result it) (!cons it result)))
     (nreverse result)))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]