Index: /trunk/FACT++/src/LocalControl.h
===================================================================
--- /trunk/FACT++/src/LocalControl.h	(revision 13285)
+++ /trunk/FACT++/src/LocalControl.h	(revision 13286)
@@ -63,5 +63,5 @@
         lout << kBold << "   ac,allowed   " << kReset << "Display a list of all currently allowed commands." << endl;
         lout << kBold << "   st,states    " << kReset << "Display a list of the available states with description." << endl;
-        lout << kBold << "   # <text>     " << kReset << "Echo <text> to the output stream" << endl;
+        lout << kBold << "   > <text>     " << kReset << "Echo <text> to the output stream" << endl;
         lout << kBold << "   .s           " << kReset << "Wait for the state-machine to change to the given state.\n";
         lout <<          "                "              "     .s <server> [<state> [<timeout> [<label>]]]\n";
@@ -134,4 +134,7 @@
 
         if (str[0]=='#')
+            return true;
+
+        if (str[0]=='>')
         {
             fStateMachine->Comment(Tools::Trim(str.substr(1)));
Index: /trunk/FACT++/src/RemoteControl.h
===================================================================
--- /trunk/FACT++/src/RemoteControl.h	(revision 13285)
+++ /trunk/FACT++/src/RemoteControl.h	(revision 13286)
@@ -139,5 +139,5 @@
         lout << kBold << "   svc,services " << kReset << "List all services in the network.\n";
         lout << kBold << "   st,states    " << kReset << "List all states in the network.\n";
-        lout << kBold << "   # <text>     " << kReset << "Echo <text> to the output stream\n";
+        lout << kBold << "   > <text>     " << kReset << "Echo <text> to the output stream\n";
         lout << kBold << "   .s           " << kReset << "Wait for the state-machine to change to the given state.\n";
         lout <<          "                "              "     .s <server> [<state> [<timeout> [<label>]]]\n";
@@ -226,6 +226,8 @@
 
         if (str[0]=='#')
-        {
-            //lout << Tools::Trim(str.substr(1)) << endl;
+            return true;
+
+        if (str[0]=='>')
+        {
             fImp->Comment(Tools::Trim(str.substr(1)));
             return true;
