OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

relax-ng-comment message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Error in "RELAX NG Compact Syntax" specification


I recently adapted the compact syntax to an ANTLR grammar, and found an error in section 2, "Syntax". I checked the errata reference (http://www.oasis-open.org/committees/relax-ng/compact-20021121-errata.html), but found that it was empty.

The error in question is the production for "literal" where the last group is one-or-more, should be zero-or-more:

Current:
literal  ::=  literalSegment ("~literalSegment)+

Corrected:
literal  ::=  literalSegment ("~literalSegment)*

Regards,
Per-Åke Ling



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]