Multi-line expressions in Xcode now have a space between the line number and the expression text.

<rdar://problem/17238093>

llvm-svn: 210718
This commit is contained in:
Greg Clayton
2014-06-11 23:10:41 +00:00
parent a997d928fc
commit bc88d938f7

View File

@@ -540,7 +540,7 @@ IOHandlerEditline::GetLines (StringList &lines, bool &interrupted)
{
FILE *out = GetOutputFILE();
if (out)
::fprintf(out, "%u", m_base_line_number + (uint32_t)lines.GetSize());
::fprintf(out, "%u%s", m_base_line_number + (uint32_t)lines.GetSize(), GetPrompt() == NULL ? " " : "");
}
bool interrupted = false;