Debugger: Don't discard newlines unconditionally in LLDB output

Change-Id: I9aedbf52f191073b6aceb0fda261b0c0dc4630f3
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
hjk
2013-04-23 17:29:06 +02:00
parent ff6296f3cb
commit 3aecfc4c41

View File

@@ -738,7 +738,8 @@ void LldbEngine::readLldbStandardError()
static bool isEatable(char c)
{
return c == 10 || c == 13;
//return c == 10 || c == 13;
return c == 13;
}
void LldbEngine::readLldbStandardOutput()