branch: elpa/geiser-racket
commit cd7378b94267f6620fad45754c08d27dd9a335d4
Author: Jose Antonio Ortega Ruiz <[email protected]>
Commit: Jose Antonio Ortega Ruiz <[email protected]>
Racket: indentation for all 'for' forms
We had only for two of them, and one was wrong!
---
elisp/geiser-racket.el | 31 ++++++++++++++++++++++++++++++-
1 file changed, 30 insertions(+), 1 deletion(-)
diff --git a/elisp/geiser-racket.el b/elisp/geiser-racket.el
index 0d54b78..52f7a32 100644
--- a/elisp/geiser-racket.el
+++ b/elisp/geiser-racket.el
@@ -249,7 +249,36 @@ This function uses `geiser-racket-init-file' if it exists."
(splicing-let-syntaxes 1)
(splicing-letrec-syntaxes 1)
(splicing-letrec-syntaxes+values 1)
- (splicing-local 1))
+ (splicing-local 1)
+ (for 1)
+ (for/and 1)
+ (for/first 1)
+ (for/fold 2)
+ (for/hash 1)
+ (for/hasheq 1)
+ (for/hasheqv 1)
+ (for/last 1)
+ (for/list 1)
+ (for/lists 2)
+ (for/or 1)
+ (for/product 1)
+ (for/sum 1)
+ (for/vector 1)
+ (for* 1)
+ (for*/and 1)
+ (for*/first 1)
+ (for*/fold 2)
+ (for*/hash 1)
+ (for*/hasheq 1)
+ (for*/hasheqv 1)
+ (for*/last 1)
+ (for*/list 1)
+ (for*/lists 2)
+ (for*/or 1)
+ (for*/product 1)
+ (for*/sum 1)
+ (for*/vector 1))
+
;;; Remote REPLs