diff options
| author | Greg Clayton <gclayton@apple.com> | 2014-07-09 20:18:54 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2014-07-09 20:18:54 +0000 |
| commit | 73d80faa78a4e25275f17f106721aac907da137b (patch) | |
| tree | 4b5ce239b3f26d70626e9b0147c13a352fb99b62 /lldb/source/Commands/CommandObjectCommands.cpp | |
| parent | b7dd329f2f3ffdb8a1e5ec31e87e94a6038c2073 (diff) | |
| download | bcm5719-llvm-73d80faa78a4e25275f17f106721aac907da137b.tar.gz bcm5719-llvm-73d80faa78a4e25275f17f106721aac907da137b.zip | |
Make sure the "command regex add" has a unique name for editline history purposes.
llvm-svn: 212644
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
| -rw-r--r-- | lldb/source/Commands/CommandObjectCommands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp index 04c5e1a91d7..7d9bb7dad8f 100644 --- a/lldb/source/Commands/CommandObjectCommands.cpp +++ b/lldb/source/Commands/CommandObjectCommands.cpp @@ -1034,7 +1034,7 @@ protected: Debugger &debugger = m_interpreter.GetDebugger(); const bool multiple_lines = true; // Get multiple lines IOHandlerSP io_handler_sp (new IOHandlerEditline (debugger, - "lldb", // Name of input reader for history + "lldb-regex", // Name of input reader for history "\033[K> ", // Prompt and clear line multiple_lines, 0, // Don't show line numbers |

