diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2024-02-07 22:20:46 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2024-02-07 22:20:46 -0800 |
commit | e7a5166f6f523a6880105ad2f9c174b653feb749 (patch) | |
tree | 44ec41b851abc685db25f450598dbca69a134bc1 | |
parent | cb85186281c20cfb412eed6ca2c105ce89930728 (diff) | |
download | txr-e7a5166f6f523a6880105ad2f9c174b653feb749.tar.gz txr-e7a5166f6f523a6880105ad2f9c174b653feb749.tar.bz2 txr-e7a5166f6f523a6880105ad2f9c174b653feb749.zip |
compiler: whitespace issue.
* stdlib/compiler (lambda-apply-transform): Fix
misleading indentation.
-rw-r--r-- | stdlib/compiler.tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/compiler.tl b/stdlib/compiler.tl index cb44e8eb..735b83d7 100644 --- a/stdlib/compiler.tl +++ b/stdlib/compiler.tl @@ -2274,7 +2274,7 @@ (t (add ^(,var-sym (if ,al-val (pop ,al-val) ,init-form))))) - (push (list* var-sym have-sym init-form) check-opts))) + (push (list* var-sym have-sym init-form) check-opts))) (if pars.rest (add ^(,pars.rest ,al-val)) (add ^(,ign-2 (if ,al-val |