Index: /trunk/FACT++/src/LocalControl.cc
===================================================================
--- /trunk/FACT++/src/LocalControl.cc	(revision 10265)
+++ /trunk/FACT++/src/LocalControl.cc	(revision 10266)
@@ -5,6 +5,4 @@
 string LocalConsole::GetUpdatePrompt() const
 {
-    const string beg = GetLinePrompt();
-
     // Compile a string like "server:state> "
     const string end =
@@ -14,5 +12,5 @@
     // If we are continously flushing the buffer omit the buffer size
     // If we are buffering show the buffer size
-    return "\n" + beg + " " + end;
+    return GetLinePrompt() + " " + end;
 }
 
@@ -24,10 +22,8 @@
     //return boost::regex_replace(s, boost::regex("\033[[0-9]+m"), "");
 
-    const string beg = GetLinePrompt();
-
     const string end =
         Form("%s:%s> ", fName.c_str(),
              fStateMachine->GetStateName().c_str());
 
-    return beg + " " + end;
+    return GetLinePrompt() + " " + end;
 }
