On 12 Oct 2025, at 14:45, Tomas Volf <[email protected]> wrote: > Related question, how should code handle the deprecation? I cannot just > change the \xNN to \xNN;, since that would not work.
My suggestion for an easy, lazy upgrade path for code that wants to work on both versions is that we keep the \u and \U escapes around for now (they are not defined by RnRS), and then you can use \u00XX. > Is it possible to > enable the r6rs syntax on per-file basis? Ideally, it would be. Unfortunately, Guileās reader flags are global, afaik; ideally they should be per-port. Daphne
