From 2c91b708fa5c2639a57c9a471787ae76a2477555 Mon Sep 17 00:00:00 2001 From: handa Date: Mon, 9 Nov 2009 06:12:22 +0000 Subject: [PATCH] *** empty log message *** --- XmlExpr.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/XmlExpr.cs b/XmlExpr.cs index 794a79c..57e22a3 100644 --- a/XmlExpr.cs +++ b/XmlExpr.cs @@ -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); -- 1.7.10.4