[FS] MS-FS-LC1-085

Section 7.1.5/7.1.7
Technical

"Type2 extended by (processing-instruction? & comment?)*":

Extended by uses "," for adding element content. This clearly is
incorrect for adding PI and comment interleaves since they can appear in
lots of places. 

For example, assume that Type2 is ((a|b), c )& d.
Then the above would yield ((a|b), c )& d, (processing-instruction? &
comment?)*

Which is incorrect. It should yield:

((a|b) & (processing-instruction? & comment?)*, c &
(processing-instruction? & comment?)*) & (d & (processing-instruction? &
comment?)*)

Received on Friday, 9 July 2004 16:35:08 UTC