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

parser: Make catalog PIs opt-in

This is an obscure feature that shouldn't be enabled by default.
This commit is contained in:
Nick Wellnhofer
2025-01-29 00:17:01 +01:00
parent 1082d813e8
commit 93506d41cb
4 changed files with 8 additions and 8 deletions

View File

@@ -1419,7 +1419,7 @@ typedef enum {
/* since 2.14.0 */
XML_PARSE_UNZIP = 1<<24,/* allow compressed content */
XML_PARSE_NO_SYS_CATALOG = 1<<25,/* disable global system catalog */
XML_PARSE_NO_CATALOG_PI = 1<<26 /* ignore catalog PIs */
XML_PARSE_CATALOG_PI = 1<<26 /* allow catalog PIs */
} xmlParserOption;
XMLPUBFUN void