Changed a comment to indicate that a specific bug was already fixed.
authorKasimier T. Buchcik <kbuchcik@src.gnome.org>
Thu, 11 May 2006 20:18:27 +0000 (20:18 +0000)
committerKasimier T. Buchcik <kbuchcik@src.gnome.org>
Thu, 11 May 2006 20:18:27 +0000 (20:18 +0000)
* libxslt/extensions.c: Changed a comment to indicate that a
  specific bug was already fixed.

ChangeLog
libxslt/extensions.c

index a55491e..fb74489 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu May 11 22:12:22 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
+
+       * libxslt/extensions.c: Changed a comment to indicate that a
+         specific bug was already fixed.
+         
 Fri May  5 23:10:47 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
 
        * libxslt/xsltInternals.h libxslt/attributes.c
index b7dad9b..0a7bc72 100644 (file)
@@ -1152,9 +1152,10 @@ xsltCheckExtPrefix(xsltStylesheetPtr style, const xmlChar * URI)
     cur = (xsltExtDefPtr) style->nsDefs;
     while (cur != NULL) {
        /*
-       * TODO: This is the old behaviour and it won't work
-       *  correctly, since it works with the namespace prefix,
-       *  but it should work with the namespace name.
+       * NOTE: This was change to work on namespace names rather
+       * than namespace prefixes. This fixes bug #339583.
+       * TODO: Consider renaming the field "prefix" of xsltExtDef
+       *  to "href".
        */
         if (xmlStrEqual(URI, cur->prefix))
             return (1);