Switch the "print" alias to "expression --".

llvm-svn: 128224
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp
index 31a1014..0fd9dab 100644
--- a/lldb/source/Interpreter/CommandInterpreter.cpp
+++ b/lldb/source/Interpreter/CommandInterpreter.cpp
@@ -112,7 +112,7 @@
     HandleCommand ("command alias l        source list", false, result);
     HandleCommand ("command alias list     source list", false, result);
     HandleCommand ("command alias p        frame variable", false, result);
-    HandleCommand ("command alias print    frame variable", false, result);
+    HandleCommand ("command alias print    expression --", false, result);
     HandleCommand ("command alias po       expression -o --", false, result);
     HandleCommand ("command alias up       regexp-up", false, result);
     HandleCommand ("command alias down     regexp-down", false, result);