Index: /trunk/FACT++/src/LocalControl.h
===================================================================
--- /trunk/FACT++/src/LocalControl.h	(revision 10309)
+++ /trunk/FACT++/src/LocalControl.h	(revision 10310)
@@ -58,5 +58,5 @@
         lout << endl << kBold << "List of commands:" << endl;
         fStateMachine->PrintListOfEvents(lout);
-        //lout << endl;
+        lout << endl;
 
         return true;
@@ -74,16 +74,4 @@
 
     void SetReceiver(StateMachineImp &imp) { fStateMachine = &imp; }
-
-    void Run(const char * = 0)
-    {
-        lout << endl;
-        lout << kBlue << kBold << "You are on the " << fName << " terminal of the MCP -" << endl;
-        lout << kBlue << kBold << "the Master Control Program." << endl;
-        lout << endl;
-        lout << kBlue << kBold << "Hello Flynn..." << endl;
-        lout << endl;
-
-        T::Run();
-    }
 };
 
Index: /trunk/FACT++/src/RemoteControl.h
===================================================================
--- /trunk/FACT++/src/RemoteControl.h	(revision 10309)
+++ /trunk/FACT++/src/RemoteControl.h	(revision 10310)
@@ -103,4 +103,5 @@
 // **************************************************************************
 #include "WindowLog.h"
+#include "ReadlineColor.h"
 
 template <class T>
@@ -151,6 +152,6 @@
         T::PrintGeneralHelp();
         lout << " " << kUnderline << "Specific commands:" << endl;
-        lout << kBold << "  s,servers   " << kReset << "List all servers which are connected." << endl;
-        lout << kBold << "  svc,service " << kReset << "List all services in the network." << endl;
+        lout << kBold << "  s,servers     " << kReset << "List all servers which are connected." << endl;
+        lout << kBold << "  svc,services  " << kReset << "List all services in the network." << endl;
         lout << endl;
         return true;
@@ -167,4 +168,7 @@
     bool Process(const std::string &str)
     {
+        if (ReadlineColor::Process(lout, str))
+            return true;
+
         if (T::Process(str))
             return true;
@@ -176,5 +180,5 @@
         }
 
-        if (str=="service" || str=="svc")
+        if (str=="services" || str=="svc")
         {
             fServiceList.PrintDescription(lout);
@@ -183,15 +187,4 @@
 
         return ProcessCommand(str);
-    }
-    void Run(const char * = 0)
-    {
-        lout << endl;
-        lout << kBlue << kBold << "You are on the terminal of the MCP -" << endl;
-        lout << kBlue << kBold << "the Master Control Program." << endl;
-        lout << endl;
-        lout << kBlue << kBold << "Hello Flynn..." << endl;
-        lout << endl;
-
-        T::Run();
     }
 };
