1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

fixed bug #98338 , fatalError SAX callback is never used. Daniel

* include/libxml/parser.h: fixed bug #98338 , fatalError SAX
  callback is never used.
Daniel
This commit is contained in:
Daniel Veillard
2002-11-12 20:57:47 +00:00
parent 8606bbbc0a
commit 0821b1584b
2 changed files with 8 additions and 1 deletions

View File

@@ -532,6 +532,8 @@ typedef void (*errorSAXFunc) (void *ctx,
* @...: extra parameters for the message display
*
* Display and format fatal error messages, callback.
* Note: so far fatalError() SAX callbacks are not used, error()
* get all the callbacks for errors.
*/
typedef void (*fatalErrorSAXFunc) (void *ctx,
const char *msg, ...);
@@ -587,7 +589,7 @@ struct _xmlSAXHandler {
commentSAXFunc comment;
warningSAXFunc warning;
errorSAXFunc error;
fatalErrorSAXFunc fatalError;
fatalErrorSAXFunc fatalError; /* unused error() get all the errors */
getParameterEntitySAXFunc getParameterEntity;
cdataBlockSAXFunc cdataBlock;
externalSubsetSAXFunc externalSubset;