From 0468e1298e54391a3d2e6a6647f99ca77ee92e5f Mon Sep 17 00:00:00 2001 From: handa Date: Mon, 9 Nov 2009 06:13:42 +0000 Subject: [PATCH] *** empty log message *** --- XmlExpr.cs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/XmlExpr.cs b/XmlExpr.cs index 57e22a3..2f1bd2f 100644 --- a/XmlExpr.cs +++ b/XmlExpr.cs @@ -2344,12 +2344,9 @@ 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; - Console.WriteLine ("skipping " + node.Name); - } + if (node.Name != Qdescription && node.Name != Qargs) + break; + Console.WriteLine ("found body " + node.Name); Term[] body = Parse (domain, node, null); if (is_defun) -- 1.7.10.4