diff options
author | flywind <43030857+xflywind@users.noreply.github.com> | 2020-12-27 02:04:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-27 09:04:58 +0100 |
commit | 1e859fa320e6f6a0fa3773c1ecf37707dd656b6c (patch) | |
tree | cde708d9759a8412fdab930bb65c5f29bcf17859 /compiler | |
parent | e84354666ac141959104f50be3fb22f1932dbaf4 (diff) | |
download | Nim-1e859fa320e6f6a0fa3773c1ecf37707dd656b6c.tar.gz |
minor (#16478)
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/llstream.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/llstream.nim b/compiler/llstream.nim index 6df927c60..bd335c23d 100644 --- a/compiler/llstream.nim +++ b/compiler/llstream.nim @@ -110,7 +110,7 @@ proc llReadFromStdin(s: PLLStream, buf: pointer, bufLen: int): int = s.rd = 0 var line = newStringOfCap(120) var triples = 0 - while readLineFromStdin(if s.s.len == 0: ">>> " else: "... ", line): + while readLineFromStdin(if s.s.len == 0: "\n>>> " else: "... ", line): s.s.add(line) s.s.add("\n") inc triples, countTriples(line) |