[email protected] (Ludovic Courtès) writes:
> It may be that your string ports are created with a non-Unicode-capable
> encoding. Try something like:
>
> (define p
> (with-fluids ((%default-port-encoding "UTF-8"))
> (open-input-string "čtyří")))
IMO, this should not be needed. Port encodings should only be relevant
when reading from ports involving byte strings, such as file ports or
socket ports. The encoding used by Scheme strings is a purely internal
matter; from the user's perspective, Scheme strings are simply a
sequence of Unicode code points.
What _is_ needed is a file coding declaration near the top of the source
file, e.g. "coding: utf-8" (see "Character Encoding of Source Files" in
the manual). I tried that and it still fails for me.
I think this is a genuine bug.
Mark