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

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

[elpa] externals/dash 3226100 194/426: Indent according to emacs lisp st


From: Phillip Lord
Subject: [elpa] externals/dash 3226100 194/426: Indent according to emacs lisp standard
Date: Tue, 04 Aug 2015 19:37:40 +0000

branch: externals/dash
commit 3226100a23b667d8df785a5f79137b443d867104
Author: Magnar Sveen <address@hidden>
Commit: Magnar Sveen <address@hidden>

    Indent according to emacs lisp standard
---
 dash.el |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dash.el b/dash.el
index 1043c23..da4b03d 100644
--- a/dash.el
+++ b/dash.el
@@ -265,14 +265,14 @@ result so if the final member of ARGS is not a list the 
result is
 a dotted list."
   (let (res)
     (--each
-     args
+        args
       (cond
-        ((not res)
-         (setq res it))
-        ((consp res)
-         (setcdr res (cons (cdr res) it)))
-        (t
-         (setq res (cons res it)))))
+       ((not res)
+        (setq res it))
+       ((consp res)
+        (setcdr res (cons (cdr res) it)))
+       (t
+        (setq res (cons res it)))))
     res))
 
 (defmacro --first (form list)



reply via email to

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