diff options
author | Araq <rumpf_a@web.de> | 2014-08-14 02:55:04 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-14 02:55:04 +0200 |
commit | 8f5bf0652828e1a477494976e40c1839270c2747 (patch) | |
tree | cd2a389a31ef9be9ed21f66f580e73a22744fcc1 /lib/core | |
parent | dc15e68c25eef0864a881e18d53efb0e6548fbb0 (diff) | |
download | Nim-8f5bf0652828e1a477494976e40c1839270c2747.tar.gz |
fixes #1450
Diffstat (limited to 'lib/core')
-rw-r--r-- | lib/core/macros.nim | 2 |
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, "$" |