From: Jay Freeman (saurik) Date: Wed, 21 Oct 2009 06:45:58 +0000 (+0000) Subject: Changed the syntax error arrow to start at the beginning of the line to setup for... X-Git-Tag: v0.9.432~298 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/c52a09b859e71323315a81f795c088000bd7ed12?ds=sidebyside Changed the syntax error arrow to start at the beginning of the line to setup for enhanced detection of readline modes. --- 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)