summary refs log tree commit diff stats
path: root/lib/core
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-08-30 22:55:32 +0200
committerAraq <rumpf_a@web.de>2012-08-30 22:55:32 +0200
commit1d14cb1ad8d4d98ea19daa2d5ab6ded59d58553a (patch)
treec32929ff723358f440415d7610fd283f58f17a91 /lib/core
parent1786e3099141f6548e9f6cd4f4998d32f602b71d (diff)
downloadNim-1d14cb1ad8d4d98ea19daa2d5ab6ded59d58553a.tar.gz
next steps towards term rewriting macros; simple examples work
Diffstat (limited to 'lib/core')
-rwxr-xr-xlib/core/macros.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim
index 54d242238..272b9a45e 100755
--- a/lib/core/macros.nim
+++ b/lib/core/macros.nim
@@ -46,7 +46,7 @@ type
     nnkYieldStmt, nnkTryStmt, nnkFinally, nnkRaiseStmt, 

     nnkReturnStmt, nnkBreakStmt, nnkContinueStmt, nnkBlockStmt, nnkStaticStmt,

     nnkDiscardStmt, nnkStmtList, nnkImportStmt, nnkFromStmt, 

-    nnkIncludeStmt, nnkBindStmt, nnkPatternStmt,

+    nnkIncludeStmt, nnkBindStmt, nnkPattern,

     nnkCommentStmt, nnkStmtListExpr, nnkBlockExpr, 

     nnkStmtListType, nnkBlockType, nnkTypeOfExpr, nnkObjectTy, 

     nnkTupleTy, nnkRecList, nnkRecCase, nnkRecWhen,