summary refs log tree commit diff stats
path: root/lib/core
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-08-30 10:55:40 +0200
committerAraq <rumpf_a@web.de>2012-08-30 10:55:40 +0200
commit1786e3099141f6548e9f6cd4f4998d32f602b71d (patch)
tree13291cf1c2a7bfc4da2e53f4acf4959443d3379a /lib/core
parentb4844a189d88655394080f765076a7d85fe6185d (diff)
downloadNim-1786e3099141f6548e9f6cd4f4998d32f602b71d.tar.gz
first steps towards term rewriting macros
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 610360fb2..54d242238 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,

+    nnkIncludeStmt, nnkBindStmt, nnkPatternStmt,

     nnkCommentStmt, nnkStmtListExpr, nnkBlockExpr, 

     nnkStmtListType, nnkBlockType, nnkTypeOfExpr, nnkObjectTy, 

     nnkTupleTy, nnkRecList, nnkRecCase, nnkRecWhen,