From: handa Date: Mon, 9 Nov 2009 06:12:22 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=2c91b708fa5c2639a57c9a471787ae76a2477555;p=m17n%2Fm17n-lib-cs.git *** empty log message *** --- 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);