Fix problem with property list escape sequences.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17446 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2003-08-07 07:17:03 +00:00
parent 144e22edcc
commit 090b0a10f2
3 changed files with 23 additions and 59 deletions

View file

@ -56,7 +56,13 @@
<!-- A key ... treated just like a string -->
<!ELEMENT key (#PCDATA)>
<!-- A string of characters. -->
<!-- A string of characters.
Not all unicodee characters are legal in PCDATA in XML,
so an escape mechanism is provided. A string containing
a sequence of the form \UXXXX or \uXXXX (where XXXX is a
hexadecimal number) will be replaced by thew appropriate
unicode character after the property list is parsed.
-->
<!ELEMENT string (#PCDATA)>
<!-- A real number [+/-]n.p[E[+/-]m] -->