Email list hosting service & mailing list manager

forcing delimiters after escapes in quoted strings Ray Blaak (11 Jul 2005 16:32 UTC)
(missing)
Re: forcing delimiters after escapes in quoted strings Michael Sperber (12 Jul 2005 13:55 UTC)
Re: forcing delimiters after escapes in quoted strings Matthew Flatt (12 Jul 2005 13:13 UTC)
Re: forcing delimiters after escapes in quoted strings Ray Blaak (13 Jul 2005 06:44 UTC)

Re: forcing delimiters after escapes in quoted strings Ray Blaak 13 Jul 2005 06:44 UTC

>I'm not sure where this suggest of delimiters comes from. In the
>current SRFI, "\x41 bc" is the same as "A bc".
>
>
I was reading this: "Unlike R5RS, every character datum must be followed
by a delimiter."
But I realize now that was talking about character literals, not chars
in a quoted string.

Also, shouldn't these be parse errors?

  #\x ff      ; Unicode 120 followed by ff
  #\x(ff)     ; Unicode 120 followed by a parenthesized ff

Cheers,
Ray Blaak