This will fail:
foo bar {
baz ?
}
While this will succeed:
foo bar {
baz "?'"
}
According to the spec, the only difference between atom
and dquoted-word
is that the latter also accepts single quotes, curly braces and whitespace as value.
There's an extra single quote in the successful example, but the behavior still applies:
foo bar { baz "?" }
Will fix it this night. Thanks for the report.
I've made an attempt on fixing it with https://lists.sr.ht/~andreafeletto/public-inbox/patches/38411. I hope that helps! :-)
On Tue, Jan 24, 2023, at 09:54, ~andreafeletto wrote:
Will fix it this night. Thanks for the report.
-- View on the web: https://todo.sr.ht/~andreafeletto/zig-scfg/1#event-222605