diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-01-19 11:06:10 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-01-19 11:06:10 +0100 |
commit | b18d52dcee32ee20b21b9711b151abfd4347c62a (patch) | |
tree | b5ea76f5bbdb6223726140d1828083a5f8becf1f /compiler/msgs.nim | |
parent | 7d5e965dc8887becd0477680746e2522fa21988b (diff) | |
parent | 0dee918de977d4773629108a2a4c0e06ca3b0b3a (diff) | |
download | Nim-b18d52dcee32ee20b21b9711b151abfd4347c62a.tar.gz |
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
Diffstat (limited to 'compiler/msgs.nim')
-rw-r--r-- | compiler/msgs.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/msgs.nim b/compiler/msgs.nim index 649e28cba..a556ad0c5 100644 --- a/compiler/msgs.nim +++ b/compiler/msgs.nim @@ -828,7 +828,7 @@ proc quit(msg: TMsgKind) = proc log*(s: string) {.procvar.} = var f: File if open(f, "nimsuggest.log", fmAppend): - f.writeln(s) + f.writeLine(s) close(f) proc handleError(msg: TMsgKind, eh: TErrorHandling, s: string) = |