diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2002-12-10 15:19:08 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2002-12-10 15:19:08 +0000 |
commit | 01c13b5be2d249ef66d86585adee87901bb8efa2 (patch) | |
tree | 4ccd7c73e107c3db83ae212ec163e6bc11b9f171 /DOCBparser.c | |
parent | e1ca50330b59d32b228ad9c05a874a96cef9748f (diff) | |
download | libxml2-01c13b5be2d249ef66d86585adee87901bb8efa2.tar.gz |
code cleanup, especially the function comments. fixed a small bug when
* DOCBparser.c HTMLparser.c c14n.c debugXML.c encoding.c hash.c
nanoftp.c nanohttp.c parser.c parserInternals.c testC14N.c
testDocbook.c threads.c tree.c valid.c xmlIO.c xmllint.c xmlmemory.c
xmlreader.c xmlregexp.c xmlschemas.c xmlschemastypes.c xpath.c:
code cleanup, especially the function comments.
* tree.c: fixed a small bug when freeing nodes which are XInclude ones.
Daniel
Diffstat (limited to 'DOCBparser.c')
-rw-r--r-- | DOCBparser.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/DOCBparser.c b/DOCBparser.c index 33c05343..840b309d 100644 --- a/DOCBparser.c +++ b/DOCBparser.c @@ -3459,7 +3459,7 @@ docbParseCharRef(docbParserCtxtPtr ctxt) { /** - * docbParseDocTypeDecl : + * docbParseDocTypeDecl: * @ctxt: an SGML parser context * * parse a DOCTYPE declaration @@ -4791,7 +4791,7 @@ docbParseMisc(xmlParserCtxtPtr ctxt) { } /** - * docbParseDocument : + * docbParseDocument: * @ctxt: an SGML parser context * * parse an SGML document (and build a tree if using the standard SAX @@ -5004,7 +5004,7 @@ docbFreeParserCtxt(docbParserCtxtPtr ctxt) } /** - * docbCreateDocParserCtxt : + * docbCreateDocParserCtxt: * @cur: a pointer to an array of xmlChar * @encoding: the SGML document encoding, or NULL * @@ -5631,7 +5631,7 @@ docbParseTryOrFinish(docbParserCtxtPtr ctxt, int terminate) { } else { /* TODO Avoid the extra copy, handle directly !!!!!! */ /* - * Goal of the following test is : + * Goal of the following test is: * - minimize calls to the SAX 'character' callback * when they are mergeable */ @@ -5869,7 +5869,7 @@ docbParseChunk(docbParserCtxtPtr ctxt, const char *chunk, int size, ************************************************************************/ /** - * docbCreatePushParserCtxt : + * docbCreatePushParserCtxt: * @sax: a SAX handler * @user_data: The user data returned on SAX callbacks * @chunk: a pointer to an array of chars @@ -5949,7 +5949,7 @@ docbCreatePushParserCtxt(docbSAXHandlerPtr sax, void *user_data, } /** - * docbSAXParseDoc : + * docbSAXParseDoc: * @cur: a pointer to an array of xmlChar * @encoding: a free form C string describing the SGML document encoding, or NULL * @sax: the SAX handler block @@ -5989,7 +5989,7 @@ docbSAXParseDoc(xmlChar *cur, const char *encoding, docbSAXHandlerPtr sax, void } /** - * docbParseDoc : + * docbParseDoc: * @cur: a pointer to an array of xmlChar * @encoding: a free form C string describing the SGML document encoding, or NULL * @@ -6005,7 +6005,7 @@ docbParseDoc(xmlChar *cur, const char *encoding) { /** - * docbCreateFileParserCtxt : + * docbCreateFileParserCtxt: * @filename: the filename * @encoding: the SGML document encoding, or NULL * @@ -6058,7 +6058,7 @@ docbCreateFileParserCtxt(const char *filename, } /** - * docbSAXParseFile : + * docbSAXParseFile: * @filename: the filename * @encoding: a free form C string describing the SGML document encoding, or NULL * @sax: the SAX handler block @@ -6100,7 +6100,7 @@ docbSAXParseFile(const char *filename, const char *encoding, docbSAXHandlerPtr s } /** - * docbParseFile : + * docbParseFile: * @filename: the filename * @encoding: a free form C string describing document encoding, or NULL * |