I would have guessed it takes about something like:
(define-syntax foo
(syntax-rules () ((foo . body) (let () . body))))
(foo (define x 1) x)
Without expanding foo, one cannot tell whether (define x 1) appears inside a (new) body or not.
As for an erratum: The only erratum that needs to be issued ts for the appendix: Language Changes, "Incompatibilities with R6RS". It says the list is not authoritative, and is possibly incomplete.
So here we have such an incompleteness because let(rec)-syntax is not mentioned. I think the (unofficial) list of errata is a good place to add this.
For R7RS-large we can look forward and add a let(rec)-syntax/splicing.
There are some edge cases that might need specification, though:
(let ()
(let-syntax/splicing ((foo (syntax-rules () ((foo) 'foo)))
(define-syntax foo (syntax-rules () ((foo) 'bar)))
(foo)))
Does this evaluate to foo, bar, or is it an error?
Or, what happens if let-syntax/splicing is used in an expression context where the is no surrounding body?
Marc