projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
59a54d6
)
Make sure to flatten items in a body.
author
Chris Hanson
<org/chris-hanson/cph>
Wed, 21 Feb 2018 01:48:08 +0000
(17:48 -0800)
committer
Chris Hanson
<org/chris-hanson/cph>
Wed, 21 Feb 2018 01:48:08 +0000
(17:48 -0800)
src/runtime/syntax-items.scm
patch
|
blob
|
history
diff --git
a/src/runtime/syntax-items.scm
b/src/runtime/syntax-items.scm
index f092dbcb424722c64064c3b733ab10c73a35f613..9adfdd39174e9a155831ecd5baba6d14c42d2919 100644
(file)
--- a/
src/runtime/syntax-items.scm
+++ b/
src/runtime/syntax-items.scm
@@
-146,7
+146,7
@@
USA.
(define (body-item items)
(expr-item
(lambda ()
- (output/body (map compile-expr-item
items
)))))
+ (output/body (map compile-expr-item
(flatten-items items)
)))))
(define (if-item predicate consequent alternative)
(expr-item