On Wed, Feb 20, 2019 at 9:04 PM Marc Nieper-Wißkirchen <xxxxxx@nieper-wisskirchen.de> wrote:
(1) Printing with commas does not work when rational numbers are written:

(show #f 123/100) => "1,23/,100"

The implementation should add commas to the numerator and denominator
independently.

Fixed.

(2) The reference implementation applies the R7RS procedure
"numerator" to numbers "n", for which "(and (exact? n) (not (integer?
n)))" returns true. However, this test is not enough to ensure that
"n" is a rational number (as the implementation may support exact real
numbers that are not rational numbers), and applying "numerator" to
non-rationals is an error.

I would be very happy if this someday triggered an error :)

--
Alex