commit | 7c9842487cd2a61f12669624f4ba38bb5c8617ea | [log] [tgz] |
---|---|---|
author | Johnny Chen <johnny.chen@apple.com> | Wed Jul 28 21:16:11 2010 +0000 |
committer | Johnny Chen <johnny.chen@apple.com> | Wed Jul 28 21:16:11 2010 +0000 |
tree | 72f1bc1ddac394f97d2053666617366dd3d8113d | |
parent | 9488b7423b556c7c777b721d2094fd5ec4a47578 [diff] |
The unix "source" command maps to "command source" in lldb. :-) git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@109673 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/CommandInterpreter.cpp b/source/Interpreter/CommandInterpreter.cpp index 1027f94..3c0cd43 100644 --- a/source/Interpreter/CommandInterpreter.cpp +++ b/source/Interpreter/CommandInterpreter.cpp
@@ -1153,7 +1153,7 @@ char path[PATH_MAX]; init_file.GetPath(path, sizeof(path)); StreamString source_command; - source_command.Printf ("source '%s'", path); + source_command.Printf ("command source '%s'", path); HandleCommand (source_command.GetData(), false, result); } else