branch: externals/dash commit e7764ea722b332b88019601b319715ef697ff62c Author: Matus Goljer <matus.gol...@gmail.com> Commit: Matus Goljer <matus.gol...@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'