mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-27 18:50:07 +03:00
parser: Remove oldXMLWDcompatibility
This commit is contained in:
parent
eed1a07d05
commit
8e871162a6
@ -652,7 +652,6 @@
|
||||
<exports symbol='_xmlSAXHandler' type='struct'/>
|
||||
<exports symbol='_xmlSAXHandlerV1' type='struct'/>
|
||||
<exports symbol='_xmlSAXLocator' type='struct'/>
|
||||
<exports symbol='oldXMLWDcompatibility' type='variable'/>
|
||||
<exports symbol='xmlDefaultSAXHandler' type='variable'/>
|
||||
<exports symbol='xmlDefaultSAXLocator' type='variable'/>
|
||||
<exports symbol='xmlParserDebugEntities' type='variable'/>
|
||||
@ -6751,9 +6750,6 @@ crash if you try to modify the tree)'/>
|
||||
<variable name='htmlDefaultSAXHandler' file='HTMLparser' type='const xmlSAXHandlerV1'>
|
||||
<info>DEPRECATED: This handler is unused and will be removed from future versions. Default old SAX v1 handler for HTML, builds the DOM tree</info>
|
||||
</variable>
|
||||
<variable name='oldXMLWDcompatibility' file='parser' type='const int'>
|
||||
<info>DEPRECATED, always 0.</info>
|
||||
</variable>
|
||||
<variable name='xmlBufferAllocScheme' file='tree' type='const xmlBufferAllocationScheme'>
|
||||
<info>DEPRECATED: Don't use. Global setting, default allocation policy for buffers, default is XML_BUFFER_ALLOC_EXACT</info>
|
||||
</variable>
|
||||
|
11
globals.c
11
globals.c
@ -241,12 +241,6 @@ const int xmlDefaultBufferSize = BASE_BUFFER_SIZE;
|
||||
* Parser defaults
|
||||
*/
|
||||
|
||||
/**
|
||||
* oldXMLWDcompatibility:
|
||||
*
|
||||
* DEPRECATED, always 0.
|
||||
*/
|
||||
const int oldXMLWDcompatibility = 0; /* DEPRECATED */
|
||||
/**
|
||||
* xmlParserDebugEntities:
|
||||
*
|
||||
@ -925,11 +919,6 @@ __xmlParserVersion(void) {
|
||||
return &xmlParserVersion;
|
||||
}
|
||||
|
||||
const int *
|
||||
__oldXMLWDcompatibility(void) {
|
||||
return &oldXMLWDcompatibility;
|
||||
}
|
||||
|
||||
const int *
|
||||
__xmlParserDebugEntities(void) {
|
||||
return &xmlParserDebugEntities;
|
||||
|
@ -972,8 +972,6 @@ typedef xmlParserInputPtr (*xmlExternalEntityLoader) (const char *URL,
|
||||
|
||||
XMLPUBVAR const char *const xmlParserVersion;
|
||||
XML_DEPRECATED
|
||||
XMLPUBVAR const int oldXMLWDcompatibility;
|
||||
XML_DEPRECATED
|
||||
XMLPUBVAR const int xmlParserDebugEntities;
|
||||
XML_DEPRECATED
|
||||
XMLPUBVAR const xmlSAXLocator xmlDefaultSAXLocator;
|
||||
@ -986,8 +984,6 @@ XMLPUBVAR const xmlSAXHandlerV1 xmlDefaultSAXHandler;
|
||||
/* backward compatibility */
|
||||
XMLPUBFUN const char *const *__xmlParserVersion(void);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN const int *__oldXMLWDcompatibility(void);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN const int *__xmlParserDebugEntities(void);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN const xmlSAXLocator *__xmlDefaultSAXLocator(void);
|
||||
|
Loading…
x
Reference in New Issue
Block a user