Re: [ANN] CHICKEN 6.0.0 rerlease candidate available

Retropikzel via Chicken-users <[email protected]> Thu, 14 May 2026 10:06:49 +0000
Newsgroups gmane.lisp.scheme.chicken
Message-ID <[email protected]>

On 12.05.2026 11:44, Felix Winkelmann via Chicken-users wrote:
> Hello everyone,
> 
> We are happy to announce the first official release candidate of the 
> upcoming
> CHICKEN 6.0.0.

I think I found some bugs.

$ csi -version
CHICKEN
( c)2000-2007 Felix L. Winkelmann, (c)2008 The CHICKEN Team
Version 6.0.0pre3 (rev 064763e1)
linux-unix-gnu-x86-64 [ 64bit dload ptables ]


utf8->string seems to stop after 3 characters.

$ csi -e '(import (scheme base)) (display (utf8->string (string->utf8 
"Hello world")))'
Hel


textual-port? is missing?


$ csi -e '(import (scheme base)) (textual-port? (current-input-port))'
Error: unbound variable: textual-port?

	Call history:

	<syntax>	  (##core#quote #f)
	<syntax>	  (##core#quote #f)
	<eval>	  (chicken.load#load-unit (##core#quote library) (##core#quote 
#f) (##core#quote #f))
	<eval>	  (chicken.load#load-unit (##core#quote library) (##core#quote 
#f) (##core#quote #f))
	<eval>	  (chicken.load#load-unit (##core#quote expand) (##core#quote 
#f) (##core#quote #f))
	<stdin>:1	  (import (scheme base))
	<stdin>:1	  (##core#begin (##core#require library scheme.base))
	<stdin>:1	  (##core#require library scheme.base)
	<syntax>	  (chicken.load#load-unit (##core#quote library) (##core#quote 
#f) (##core#quote #f))
	<syntax>	  (##core#quote library)
	<syntax>	  (##core#quote #f)
	<syntax>	  (##core#quote #f)
	<eval>	  (chicken.load#load-unit (##core#quote library) (##core#quote 
#f) (##core#quote #f))
	<stdin>:1	  (textual-port? (current-input-port))
	<stdin>:1	  (current-input-port)
	<stdin>:1	  (textual-port? (current-input-port))	<--

```