From eb00184a0173e710533dfc6df21c103032395f63 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 4 Sep 2023 18:31:17 -0700 Subject: [PATCH] Document changes for 509 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0a40b98..199e5bba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ Bug Fixes +- jpellegrini reported that Cyclone returns `#f` when comparing complex numbers using operators other than `=`. Instead it is better to raise an error in these situations. - lassik and jpellegrini reported that `abs` was incorrectly returning the real part of a complex number argument. Modified `abs` to return an error for complex numbers. - jpellegrini fixed `(srfi 143)` so that the following are constants instead of procedures: `fx-width`, `fx-greatest`, and `fx-least`. - Raise an error if `odd?` or `even?` is passed a decimal number. Thanks to jpellegrini for the bug report.