expat/doc reference.html,1.45,1.46
"Karl Waclawek" <[email protected]>
| Newsgroups | gmane.text.xml.expat.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/expat/expat/doc In directory sc8-pr-cvs1:/tmp/cvs-serv26515 Modified Files: reference.html Log Message: Fixed omission of second argument in XML_ParserReset. Reported by Tim Bray. Index: reference.html =================================================================== RCS file: /cvsroot/expat/expat/doc/reference.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- reference.html 13 Mar 2003 02:13:06 -0000 1.45 +++ reference.html 28 Aug 2003 13:08:10 -0000 1.46 @@ -692,7 +692,7 @@ <pre class="fcndec" id="XML_ParserReset"> XML_Bool -XML_ParserReset(XML_Parser p); +XML_ParserReset(XML_Parser p, const XML_Char *encoding); </pre> <div class="fcndef"> Clean up the memory structures maintained by the parser so that it may @@ -708,9 +708,9 @@ <h3><a name="parsing">Parsing</a></h3> <p>To state the obvious: the three parsing functions <code><a href= -"#XML_Parse" >XML_Parse</a></code>, <code><a href= "#XML_ParseBuffer" ->XML_ParseBuffer</a></code> and <code><a href= "#XML_GetBuffer" ->>XML_GetBuffer</a></code> must not be +"#XML_Parse" >XML_Parse</a></code>, <code><a href= "#XML_ParseBuffer"> +XML_ParseBuffer</a></code> and <code><a href= "#XML_GetBuffer"> +XML_GetBuffer</a></code> must not be called from within a handler unless they operate on a separate parser instance, that is, one that did not call the handler. For example, it is OK to call the parsing functions from within an