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

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

[elpa] externals/dash e7764ea 083/316: Formatting


From: ELPA Syncer
Subject: [elpa] externals/dash e7764ea 083/316: Formatting
Date: Mon, 15 Feb 2021 15:57:31 -0500 (EST)

branch: externals/dash
commit e7764ea722b332b88019601b319715ef697ff62c
Author: Matus Goljer <matus.goljer@gmail.com>
Commit: Matus Goljer <matus.goljer@gmail.com>

    Formatting
---
 dash-functional.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dash-functional.el b/dash-functional.el
index 4bd2d6d..b5d49bf 100644
--- a/dash-functional.el
+++ b/dash-functional.el
@@ -148,11 +148,11 @@ will increment indefinitely.
 
 The closure accepts any number of arguments, which are discarded."
   (let ((inc (or inc 1))
-    (n (or beg 0)))
+        (n (or beg 0)))
     (lambda (&rest _)
       (when (or (not end) (< n end))
-    (prog1 n
-      (setq n (+ n inc)))))))
+        (prog1 n
+          (setq n (+ n inc)))))))
 
 (defvar -fixfn-max-iterations 1000
   "The default maximum number of iterations performed by `-fixfn'



reply via email to

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