summary refs log tree commit diff stats
path: root/lib/core
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-08-14 02:55:04 +0200
committerAraq <rumpf_a@web.de>2014-08-14 02:55:04 +0200
commit8f5bf0652828e1a477494976e40c1839270c2747 (patch)
treecd2a389a31ef9be9ed21f66f580e73a22744fcc1 /lib/core
parentdc15e68c25eef0864a881e18d53efb0e6548fbb0 (diff)
downloadNim-8f5bf0652828e1a477494976e40c1839270c2747.tar.gz
fixes #1450
Diffstat (limited to 'lib/core')
-rw-r--r--lib/core/macros.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim
index 334a4b8c7..e290cce32 100644
--- a/lib/core/macros.nim
+++ b/lib/core/macros.nim
@@ -627,7 +627,7 @@ proc `$`*(node: PNimrodNode): string {.compileTime.} =
   case node.kind
   of nnkIdent:
     result = $node.ident
-  of nnkStrLit:
+  of nnkStrLit..nnkTripleStrLit:
     result = node.strVal
   else: 
     badNodeKind node.kind, "$"