From bb6b3eafedc12b9c9ed936b4b02458e856ce5ec6 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 21 May 2024 18:54:17 -0700 Subject: [PATCH] Issue #537 - Document bug fix --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dc3dd80..96b43222 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ Bug Fixes +- Fixed a bug in `apply` where an error may be raised when processing quoted sub-expressions. For example the following would throw an error: `(apply cons '(5 (1 2)))`. Thanks to @srgx for the bug report! - Fixed a beta expansion optimization bug where code such as the following would cause the compiler to hang. Thanks to Yorick Hardy for the bug report: (define (compile-forever x) x (compile-forever x))