aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2010-09-16 17:09:23 +0000
committerGreg Clayton <gclayton@apple.com>2010-09-16 17:09:23 +0000
commit0f3a8ebf8cd0cb27165a5aba45b33f1cd46e4b80 (patch)
treec2d6b425e75455ac0240d22beeda714f188d3fa8 /source
parenta2784ee3c8451936d50abf94dcb29527d1a2a85a (diff)
downloadlldb-0f3a8ebf8cd0cb27165a5aba45b33f1cd46e4b80.tar.gz
Added default more aliases to ease gdb converts:
"b" is now aliased to "regexp-break" "p" is now aliased to "frame variable" "print" is now aliased to "frame variable" git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@114092 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'source')
-rw-r--r--source/Interpreter/CommandInterpreter.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/Interpreter/CommandInterpreter.cpp b/source/Interpreter/CommandInterpreter.cpp
index d9cdbc724..856220692 100644
--- a/source/Interpreter/CommandInterpreter.cpp
+++ b/source/Interpreter/CommandInterpreter.cpp
@@ -86,7 +86,7 @@ CommandInterpreter::Initialize ()
result.Clear(); HandleCommand ("command alias continue process continue", false, result);
result.Clear(); HandleCommand ("command alias expr expression", false, result);
result.Clear(); HandleCommand ("command alias exit quit", false, result);
- result.Clear(); HandleCommand ("command alias b breakpoint", false, result);
+ result.Clear(); HandleCommand ("command alias b regexp-break", false, result);
result.Clear(); HandleCommand ("command alias bt thread backtrace", false, result);
result.Clear(); HandleCommand ("command alias si thread step-inst", false, result);
result.Clear(); HandleCommand ("command alias step thread step-in", false, result);
@@ -97,6 +97,8 @@ CommandInterpreter::Initialize ()
result.Clear(); HandleCommand ("command alias x memory read", false, result);
result.Clear(); HandleCommand ("command alias l source list", false, result);
result.Clear(); HandleCommand ("command alias list source list", false, result);
+ result.Clear(); HandleCommand ("command alias p frame variable", false, result);
+ result.Clear(); HandleCommand ("command alias print frame variable", false, result);
}
const char *