mirror of
https://github.com/intel/llvm.git
synced 2026-01-15 12:25:46 +08:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user