To: "Fred L. Drake, Jr." <fdrake@acm.org>, xml-dev@lists.xml.org
Date: Wed, 15 Aug 2001 22:21:47 -0700
> So, should U+0000 be interpreted as whitespace, non-whitespace, or
> an error?
2] Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD]
| [#x10000-#x10FFFF]
Null is a fatal error -- #x0000 is neither whitespace nor non-whitespace.
- Dave