summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorflywind <43030857+xflywind@users.noreply.github.com>2020-12-27 02:04:58 -0600
committerGitHub <noreply@github.com>2020-12-27 09:04:58 +0100
commit1e859fa320e6f6a0fa3773c1ecf37707dd656b6c (patch)
treecde708d9759a8412fdab930bb65c5f29bcf17859 /compiler
parente84354666ac141959104f50be3fb22f1932dbaf4 (diff)
downloadNim-1e859fa320e6f6a0fa3773c1ecf37707dd656b6c.tar.gz
minor (#16478)
Diffstat (limited to 'compiler')
-rw-r--r--compiler/llstream.nim2
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)