diff options
author | Adrian McCarthy <amccarth@google.com> | 2015-04-23 20:00:25 +0000 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2015-04-23 20:00:25 +0000 |
commit | 2304b6ff44e620a73a730a702f8ec603e94a3e13 (patch) | |
tree | 9009261d91d63472e2185d30dc82f8a51e61dab5 /lldb/source/Commands/CommandObjectMultiword.cpp | |
parent | 3286ec1484bb20d99c8d69f417b789c5da0b8166 (diff) | |
download | llvm-2304b6ff44e620a73a730a702f8ec603e94a3e13.zip llvm-2304b6ff44e620a73a730a702f8ec603e94a3e13.tar.gz llvm-2304b6ff44e620a73a730a702f8ec603e94a3e13.tar.bz2 |
Factor resolution of abbreviations and aliases so that they can be tested directly. http://reviews.llvm.org/D9033
llvm-svn: 235633
Diffstat (limited to 'lldb/source/Commands/CommandObjectMultiword.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectMultiword.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectMultiword.cpp b/lldb/source/Commands/CommandObjectMultiword.cpp index d558a06..0dac948 100644 --- a/lldb/source/Commands/CommandObjectMultiword.cpp +++ b/lldb/source/Commands/CommandObjectMultiword.cpp @@ -153,7 +153,7 @@ CommandObjectMultiword::Execute(const char *args_string, CommandReturnObject &re error_msg.append (GetCommandName()); error_msg.append (" "); error_msg.append (sub_command); - error_msg.append ("'"); + error_msg.append ("'."); if (num_subcmd_matches > 0) { |