Re: New draft (#6) and last call for comments on SRFI 266: The expr syntax Marc Nieper-Wißkirchen (30 Aug 2026 17:42 UTC)
Re: New draft (#6) and last call for comments on SRFI 266: The expr syntax Marc Nieper-Wißkirchen (31 Aug 2026 07:01 UTC)
Re: New draft (#6) and last call for comments on SRFI 266: The expr syntax Marc Nieper-Wißkirchen (01 Sep 2026 08:28 UTC)
Re: New draft (#6) and last call for comments on SRFI 266: The expr syntax Marc Nieper-Wißkirchen (01 Sep 2026 10:09 UTC)
Re: New draft (#6) and last call for comments on SRFI 266: The expr syntax Marc Nieper-Wißkirchen (01 Sep 2026 12:47 UTC)
Re: New draft (#6) and last call for comments on SRFI 266: The expr syntax Marc Nieper-Wißkirchen (01 Sep 2026 12:14 UTC)
Re: New draft (#6) and last call for comments on SRFI 266: The expr syntax Marc Nieper-Wißkirchen (01 Sep 2026 14:42 UTC)
Re: New draft (#6) and last call for comments on SRFI 266: The expr syntax Marc Nieper-Wißkirchen (04 Sep 2026 19:46 UTC)
Re: New draft (#6) and last call for comments on SRFI 266: The expr syntax Peter McGoron (02 Sep 2026 03:39 UTC)

Re: New draft (#6) and last call for comments on SRFI 266: The expr syntax Peter McGoron 02 Sep 2026 03:35 UTC

I'm going to amend my suggestions after thinking about it again:

 > The arguments are either a single expression or a subexpression in
parentheses. When it is a subexpression in parentheses, the arguments of
the call are separated by spaces.

This should read

 > The arguments are either a single expression or a list subexpression.
When it is a list subexpression, the arguments of the call are parsed
from the elements of the list.

Your text:

 > When argument of a call, spaces are interpreted as separating arguments.

Should be:

 > The arguments of the call are parsed from the elements of the list.

___________________________________________

These changes reflect the fact that i.e. f(- x) is a single argument,
not two arguments.

(They don't address the ambiguity issue Marc pointed out. Because
"unquote" is probably not valid in the expression, adding "unquote" as
the argument separator probably works, even if it seems hacky. The above
might change in such a scenario.)

-- Peter McGoron