summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorflywind <43030857+xflywind@users.noreply.github.com>2020-12-27 09:08:48 -0600
committerGitHub <noreply@github.com>2020-12-27 23:08:48 +0800
commit792e4a0392519c7921a0afedb029d02b5485ca64 (patch)
treebfde8a7dd2ea7e0c503b47dfa48c3cbb685175a6
parent271f68259b5c42f515a707cd51bd500a298ec4a0 (diff)
downloadNim-792e4a0392519c7921a0afedb029d02b5485ca64.tar.gz
Revert #16478 (#16483)
* minor

* Revert "minor"

This reverts commit ef1807cbb468bffdcfffb41f023644b57fb0fe11.
-rw-r--r--compiler/llstream.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/llstream.nim b/compiler/llstream.nim
index bd335c23d..6df927c60 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: "\n>>> " else: "... ", line):
+  while readLineFromStdin(if s.s.len == 0: ">>> " else: "... ", line):
     s.s.add(line)
     s.s.add("\n")
     inc triples, countTriples(line)