1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-01 13:41:39 +03:00

preparing release 1.0.13 updated and rebuilt the docs fixed a possible

* configure.in libxslt/xsltwin32config.h: preparing release
  1.0.13
* doc/*: updated and rebuilt the docs
* python/libxslt.c: fixed a possible reentrancy problem
Daniel
This commit is contained in:
Daniel Veillard
2002-03-08 16:52:34 +00:00
parent f503baafa1
commit ef2531fb96
28 changed files with 1724 additions and 993 deletions

View File

@ -360,13 +360,17 @@ extern void initlibxml2mod(void);
#endif
void initlibxsltmod(void) {
static int initialized = 0;
PyObject *m;
#ifdef MERGED_MODULES
initlibxml2mod();
#endif
if (initialized != 0)
return;
m = Py_InitModule("libxsltmod", libxsltMethods);
initialized = 1;
/* libxslt_xmlErrorInitialize(); */
/*
* Specific XSLT initializations
@ -377,7 +381,6 @@ void initlibxsltmod(void) {
xmlLoadExtDtdDefaultValue = XML_DETECT_IDS | XML_COMPLETE_ATTRS;
/* xmlDefaultSAXHandlerInit(); */
xmlDefaultSAXHandler.cdataBlock = NULL;
}