From acbc1c4414cbc3125f7fd381faf434981ae10bfb Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 24 Feb 2025 19:42:52 -0800 Subject: [PATCH] Add exception handler fix --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cb45c9e..d6b67cf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ Bug Fixes +- Yorick Hardy fixed the runtime to return the appropriate types of objects to exception handlers. - Yorick Hardy modified the runtime to allow `thread-terminate!` to take a thread object as an argument, per SRFI 18. - @nmeum fixed `open_memstream`/`fmemopen` feature detection with GCC >= 14. - 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!