From 3fd94b731ce640fcdcec684d67bd69574961e8ca Mon Sep 17 00:00:00 2001 From: Clay Sweetser Date: Sat, 24 May 2014 08:11:29 -0400 Subject: [PATCH] Fixes #1200 --- compiler/lookups.nim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/lookups.nim b/compiler/lookups.nim index c08e2ce5ce..9b7ccf93a0 100644 --- a/compiler/lookups.nim +++ b/compiler/lookups.nim @@ -15,7 +15,8 @@ import proc ensureNoMissingOrUnusedSymbols(scope: PScope) -proc considerAccents*(n: PNode): PIdent = +proc considerAccents*(n: PNode): PIdent = + ## Retrieve a PIdent from a PNode, taking into account accent nodes. case n.kind of nkIdent: result = n.ident of nkSym: result = n.sym.name