Add 'unalias' to the commands sub-command dictionary.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@113715 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectCommands.cpp b/source/Commands/CommandObjectCommands.cpp
index 0012355..b301d8f 100644
--- a/source/Commands/CommandObjectCommands.cpp
+++ b/source/Commands/CommandObjectCommands.cpp
@@ -349,8 +349,8 @@
 public:
     CommandObjectCommandsUnalias () :
         CommandObject ("commands unalias",
-                   "Allows the user to remove/delete a user-defined command abbreviation.",
-                   "unalias <alias-name-to-be-removed>")
+                       "Allow the user to remove/delete a user-defined command abbreviation.",
+                       "unalias <alias-name-to-be-removed>")
     {
     }
 
@@ -429,6 +429,7 @@
 {
     LoadSubCommand (interpreter, "source",   CommandObjectSP (new CommandObjectCommandsSource ()));
     LoadSubCommand (interpreter, "alias",   CommandObjectSP (new CommandObjectCommandsAlias ()));
+    LoadSubCommand (interpreter, "unalias", CommandObjectSP (new CommandObjectCommandsUnalias ()));
 }
 
 CommandObjectMultiwordCommands::~CommandObjectMultiwordCommands ()