renamed writeln to writeLine in lib

This commit is contained in:
patrick dw
2015-06-19 01:02:22 -05:00
parent 072688d06e
commit 15e7fe787a
10 changed files with 25 additions and 25 deletions

View File

@@ -307,7 +307,7 @@ proc defaultMsgHandler*(filename: string, line, col: int, msgkind: MsgKind,
let a = messages[msgkind] % arg
let message = "$1($2, $3) $4: $5" % [filename, $line, $col, $mc, a]
if mc == mcError: raise newException(EParseError, message)
else: writeln(stdout, message)
else: writeLine(stdout, message)
proc defaultFindFile*(filename: string): string {.procvar.} =
if existsFile(filename): result = filename