Diff for /embedaddon/libxml2/include/libxml/parser.h between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:37:58 version 1.1.1.2, 2013/07/22 01:22:22
Line 308  struct _xmlParserCtxt { Line 308  struct _xmlParserCtxt {
     int                nodeInfoNr;    /* Depth of the parsing stack */      int                nodeInfoNr;    /* Depth of the parsing stack */
     int                nodeInfoMax;   /* Max depth of the parsing stack */      int                nodeInfoMax;   /* Max depth of the parsing stack */
     xmlParserNodeInfo *nodeInfoTab;   /* array of nodeInfos */      xmlParserNodeInfo *nodeInfoTab;   /* array of nodeInfos */
   
       int                input_id;      /* we need to label inputs */
 };  };
   
 /**  /**
Line 1105  typedef enum { Line 1107  typedef enum {
                                    crash if you try to modify the tree) */                                     crash if you try to modify the tree) */
     XML_PARSE_OLD10     = 1<<17,/* parse using XML-1.0 before update 5 */      XML_PARSE_OLD10     = 1<<17,/* parse using XML-1.0 before update 5 */
     XML_PARSE_NOBASEFIX = 1<<18,/* do not fixup XINCLUDE xml:base uris */      XML_PARSE_NOBASEFIX = 1<<18,/* do not fixup XINCLUDE xml:base uris */
    XML_PARSE_HUGE      = 1<<19, /* relax any hardcoded limit from the parser */    XML_PARSE_HUGE      = 1<<19,/* relax any hardcoded limit from the parser */
    XML_PARSE_OLDSAX    = 1<<20 /* parse using SAX2 interface from before 2.7.0 */    XML_PARSE_OLDSAX    = 1<<20,/* parse using SAX2 interface before 2.7.0 */
     XML_PARSE_IGNORE_ENC= 1<<21 /* ignore internal document encoding hint */
 } xmlParserOption;  } xmlParserOption;
   
 XMLPUBFUN void XMLCALL  XMLPUBFUN void XMLCALL
Line 1223  typedef enum { Line 1226  typedef enum {
     XML_WITH_DEBUG_RUN = 30,      XML_WITH_DEBUG_RUN = 30,
     XML_WITH_ZLIB = 31,      XML_WITH_ZLIB = 31,
     XML_WITH_ICU = 32,      XML_WITH_ICU = 32,
       XML_WITH_LZMA = 33,
     XML_WITH_NONE = 99999 /* just to be sure of allocation size */      XML_WITH_NONE = 99999 /* just to be sure of allocation size */
 } xmlFeature;  } xmlFeature;
   

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>