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:
71e8113
)
Fix but: top-level definition names must be symbols.
author
Chris Hanson
<org/chris-hanson/cph>
Sun, 28 Jan 2018 01:18:11 +0000
(17:18 -0800)
committer
Chris Hanson
<org/chris-hanson/cph>
Sun, 28 Jan 2018 01:18:11 +0000
(17:18 -0800)
src/runtime/syntax-compile.scm
patch
|
blob
|
history
diff --git
a/src/runtime/syntax-compile.scm
b/src/runtime/syntax-compile.scm
index 4b3cf490832576b4256f483f6cc2cfdc4c528e20..9492bbb14cbe9e416a3af2a74f007f6dde3b552b 100644
(file)
--- a/
src/runtime/syntax-compile.scm
+++ b/
src/runtime/syntax-compile.scm
@@
-30,7
+30,7
@@
USA.
\f
(define (compile-item/top-level item)
(if (binding-item? item)
- (let ((name (
binding-item/name item
))
+ (let ((name (
identifier->symbol (binding-item/name item)
))
(value (binding-item/value item)))
(if (keyword-value-item? value)
(output/top-level-syntax-definition