diff options
-rw-r--r-- | compiler/syntaxes.nim | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/syntaxes.nim b/compiler/syntaxes.nim index 021910544..37ea6e2db 100644 --- a/compiler/syntaxes.nim +++ b/compiler/syntaxes.nim @@ -97,10 +97,7 @@ proc parsePipe(filename: string, inputStream: PLLStream): PNode = discard llStreamReadLine(s, line) i = 0 inc linenumber - if line[i] == '#' and line[i+1] in {'?', '!'}: - if line[i+1] == '!': - message(newLineInfo(filename, linenumber, 1), - warnDeprecated, "use '#?' instead; '#!'") + if line[i] == '#' and line[i+1] == '?': inc(i, 2) while line[i] in Whitespace: inc(i) var q: TParser |