implemented a new object factory mechanism which is now really independent of the...
[supertux.git] / lib / lisp / parser.cpp
index 875a4b2..08c5aa7 100644 (file)
@@ -119,8 +119,6 @@ Parser::read()
         result = new Lisp(Lisp::TYPE_STRING);
         if(dictionary) {
           std::string translation = dictionary->translate(lexer->getString());
-          std::cout << "Translated '" << lexer->getString() << "' -> '" 
-            << translation << "'\n";
           result->v.string = new char[translation.size()+1];
           memcpy(result->v.string, translation.c_str(), translation.size()+1);
         } else {