diff options
author | Greg Clayton <gclayton@apple.com> | 2014-02-05 21:03:22 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2014-02-05 21:03:22 +0000 |
commit | e4e462c42c8feb9ae85ca30415dd3a60fde22797 (patch) | |
tree | db233ba6f5bb1cb493b74fa95acf5a65ca00682f /lldb/source/Commands/CommandObjectCommands.cpp | |
parent | 67a28136ad7b54e4d188d903dd9ff86a05f7e74f (diff) | |
download | llvm-e4e462c42c8feb9ae85ca30415dd3a60fde22797.zip llvm-e4e462c42c8feb9ae85ca30415dd3a60fde22797.tar.gz llvm-e4e462c42c8feb9ae85ca30415dd3a60fde22797.tar.bz2 |
Fixed output to display correctly for "command source" by fixing the correct flags being set.
Also emit the "Executing commands" message so it properly only comes out when desired and so it comes out in the right place.
<rdar://problem/15992208>
llvm-svn: 200875
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectCommands.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp index bb7ca02..7bfdec0 100644 --- a/lldb/source/Commands/CommandObjectCommands.cpp +++ b/lldb/source/Commands/CommandObjectCommands.cpp @@ -378,8 +378,6 @@ protected: { const char *filename = command.GetArgumentAtIndex(0); - result.AppendMessageWithFormat ("Executing commands in '%s'.\n", filename); - FileSpec cmd_file (filename, true); ExecutionContext *exe_ctx = NULL; // Just use the default context. |