diff options
author | Araq <rumpf_a@web.de> | 2010-10-23 17:19:32 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2010-10-23 17:19:32 +0200 |
commit | 770cc71640157fe9c1ed87552aa95b8956530def (patch) | |
tree | 2083d123daeabf53e67f4cb39c364e7226ef681a /lib/pure/xmltree.nim | |
parent | becd46f61b0180f39a2e871f9e8565c180035e00 (diff) | |
download | Nim-770cc71640157fe9c1ed87552aa95b8956530def.tar.gz |
added base64 module; decoding still broken
Diffstat (limited to 'lib/pure/xmltree.nim')
-rwxr-xr-x | lib/pure/xmltree.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/xmltree.nim b/lib/pure/xmltree.nim index 8604078fb..57988698b 100755 --- a/lib/pure/xmltree.nim +++ b/lib/pure/xmltree.nim @@ -240,12 +240,12 @@ proc xmlConstructor(e: PNimrodNode): PNimrodNode {.compileTime.} = if a[i].kind == nnkExprEqExpr: attrs.add(toStrLit(a[i][0])) attrs.add(a[i][1]) - echo repr(attrs) + #echo repr(attrs) else: elements.add(a[i]) result.add(elements) if attrs.len > 1: - echo repr(newStringTabCall) + #echo repr(newStringTabCall) result.add(newStringTabCall) else: result = newCall("newXmlTree", toStrLit(a)) |