From c52a09b859e71323315a81f795c088000bd7ed12 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Wed, 21 Oct 2009 06:45:58 +0000 Subject: [PATCH] Changed the syntax error arrow to start at the beginning of the line to setup for enhanced detection of readline modes. --- Console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Console.cpp b/Console.cpp index 98e3cc6..2b61656 100644 --- a/Console.cpp +++ b/Console.cpp @@ -261,7 +261,7 @@ static void Console(int socket) { std::cerr << lines[begin.line - 1] << std::endl; } - std::cerr << " | "; + std::cerr << "...."; for (size_t i(0); i != begin.column - 1; ++i) std::cerr << '.'; if (begin.line != end.line || begin.column == end.column) -- 2.49.0