1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-08-07 10:42:55 +03:00

fixed bug #125502 and corrected expected test output fixed broken test

* libxslt/transform.c, tests/general/bug-119.out: fixed
  bug #125502 and corrected expected test output
* tests/general/bug-79.out: fixed broken test (bug #123328)
* libxslt/pattern.c, libexslt/functions.c: minor change to
  eliminate compilation warning
This commit is contained in:
William M. Brack
2003-11-02 01:10:43 +00:00
parent c054e019f0
commit a083b0b03e
6 changed files with 13 additions and 19 deletions

View File

@@ -184,13 +184,13 @@ exsltFuncShutdown (xsltTransformContextPtr ctxt ATTRIBUTE_UNUSED,
* @style: an XSLT stylesheet
* @URI: the namespace URI for the extension
*
* Allocates the styleshet data for EXSLT - Function
* Allocates the stylesheet data for EXSLT - Function
*
* Returns the allocated data
*/
static xmlHashTablePtr
exsltFuncStyleInit (xsltStylesheetPtr style,
const xmlChar *URI) {
exsltFuncStyleInit (xsltStylesheetPtr style ATTRIBUTE_UNUSED,
const xmlChar *URI ATTRIBUTE_UNUSED) {
return xmlHashCreate(1);
}