Update help text for breakpoint command one-liners.

Fix minor bug in 'commands alias'; alias commands can now handle command options 
and arguments in the same alias.  Also fixes problem that disallowed "process launch --" as
an alias.

Fix typo in comment in Python script interpreter.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@114499 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/ScriptInterpreterPython.cpp b/source/Interpreter/ScriptInterpreterPython.cpp
index 8d3ae43..bcdcc5e 100644
--- a/source/Interpreter/ScriptInterpreterPython.cpp
+++ b/source/Interpreter/ScriptInterpreterPython.cpp
@@ -726,7 +726,7 @@
     }
 
     // Traverse user_input exactly once.  At each line, either copy line into new, auto-generated function, 
-    // increasing indentation by 5 spaces...  ...or copy it exactly as is into the user-written 
+    // increasing indentation by 5 spaces or copy it exactly as is into the user-written 
     // currently-to-be-pushed-to-Python function def.  At the end of each Python function def, push the function 
     // to Python, and clear the function string, to start again.  At the end of it all, if there is anything in 
     // the auto-generated function, push it to Python and add the function call to it to the callback data.