Add  alias information, including aliased command options & 
arguments, to help text for alias commands.

llvm-svn: 117617
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp
index 3718658..8bbe914 100644
--- a/lldb/source/Commands/CommandObjectCommands.cpp
+++ b/lldb/source/Commands/CommandObjectCommands.cpp
@@ -339,6 +339,7 @@
                          if (!result.Succeeded() && result.GetStatus() != lldb::eReturnStatusStarted)
                         {
                             result.AppendError ("Unable to create requested command alias.\n");
+                            return false;
                         }
                      }
 
@@ -378,6 +379,7 @@
              {
                  result.AppendErrorWithFormat ("'%s' is not an existing command.\n", actual_command.c_str());
                  result.SetStatus (eReturnStatusFailed);
+                 return false;
              }
         }