From 502be58722262c5b9d779848a168b0dc67ee7471 Mon Sep 17 00:00:00 2001 From: Matus Goljer Date: Sun, 19 Jun 2016 15:11:05 +0200 Subject: [PATCH] Make -each-indexed indent like -each --- dash.el | 1 + 1 file changed, 1 insertion(+) diff --git a/dash.el b/dash.el index eb9105b..ee362b5 100644 --- a/dash.el +++ b/dash.el @@ -101,6 +101,7 @@ In the anaphoric form `--each-indexed', the index is exposed as `it-index`. See also: `-map-indexed'." (--each list (funcall fn it-index it))) +(put '-each-indexed 'lisp-indent-function 1) (defmacro --each-while (list pred &rest body) "Anaphoric form of `-each-while'."