summary refs log tree commit diff stats
path: root/rod/syntaxes.nim
diff options
context:
space:
mode:
Diffstat (limited to 'rod/syntaxes.nim')
-rwxr-xr-xrod/syntaxes.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/rod/syntaxes.nim b/rod/syntaxes.nim
index b8e4c1837..d757ad9f6 100755
--- a/rod/syntaxes.nim
+++ b/rod/syntaxes.nim
@@ -1,7 +1,7 @@
 #
 #
 #           The Nimrod Compiler
-#        (c) Copyright 2009 Andreas Rumpf
+#        (c) Copyright 2010 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
@@ -142,9 +142,9 @@ proc applyFilter(p: var TParsers, n: PNode, filename: string, stdin: PLLStream):
     result = filterReplace(stdin, filename, n)
   if f != filtNone: 
     if gVerbosity >= 2: 
-      rawMessage(hintCodeBegin)
+      rawMessage(hintCodeBegin, [])
       messageOut(result.s)
-      rawMessage(hintCodeEnd)
+      rawMessage(hintCodeEnd, [])
 
 proc evalPipe(p: var TParsers, n: PNode, filename: string, start: PLLStream): PLLStream = 
   result = start
> 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176