*** empty log message ***
authorhanda <handa>
Mon, 9 Nov 2009 06:12:22 +0000 (06:12 +0000)
committerhanda <handa>
Mon, 9 Nov 2009 06:12:22 +0000 (06:12 +0000)
XmlExpr.cs

index 794a79c..57e22a3 100644 (file)
@@ -2344,9 +2344,13 @@ namespace System.Xml
       Function func = domain.GetFunc (name);
 
       for (node = node.FirstChild; node != null; node = node.NextSibling)
-       if (node.Name != Qdescription
-           && node.Name != Qargs)
-         break;
+       {
+         if (node.Name != Qdescription
+             && node.Name != Qargs)
+           break;
+         Console.WriteLine ("skipping " + node.Name);
+       }
+      
       Term[] body = Parse (domain, node, null);
       if (is_defun)
        ((Function.Lambda) func).SetBody (body);