Document macro hygiene fixes

This commit is contained in:
Justin Ethier 2018-01-19 18:46:43 -05:00
parent df85c89195
commit 6d52836bf8
2 changed files with 2 additions and 1 deletions

View file

@ -8,6 +8,7 @@ Features
Bug Fixes
- Made several improvements to macro hygiene by renaming local variable bindings during expansion. Added a unit test module covering many test cases.
- Fixed many functions including `utf8->string`, `string->utf8`, `bytevector-copy`, `list->vector`, and `list->string` to heap allocate objects that exceed the maximum size for objects on the stack.
## 0.7.1 - December 21, 2017

View file

@ -171,7 +171,7 @@
(test
'((unquote (quote bar)))
(let ((unquote 'foo)) `(,'bar))
'(,'bar))
)
)
;; ;;