Fwd: New draft (#2) and last call for comments on SRFI 267: Raw String Syntax Peter McGoron 10 Mar 2026 22:10 UTC

Forgot to send this to the list.

-------- Forwarded Message --------
Subject: Re: New draft (#2) and last call for comments on SRFI 267: Raw
String Syntax
Date: Tue, 10 Mar 2026 18:07:54 -0400
From: Peter McGoron <xxxxxx@mcgoron.com>
To: John Cowan <xxxxxx@ccil.org>

Comments noted.

On 3/10/26 13:17, John Cowan wrote:
> namely, no double double-quote sequences in the raw string

This is actually not the case, as "\"" cannot be written with the empty
delimiter, you need something like #"-"""-". For X to be a valid
delimiter for a string S, then (string-append "\"" X "\"") cannot appear
in the string, *and* (string-append "\"" X) cannot be a suffix of the
string.

I believe that is sufficient, because for a string S, (string-append S
"\"" X "\"") (the part of the raw string after the delimiter) will only
contain the subsequence (string-append "\"" X "\"") as a suffix.

-- Peter McGoron