[Super-tux-commit] supertux/lib/lisp parser.cpp,1.3,1.4
Brought to you by:
wkendrick
From: Matze B. <mat...@us...> - 2004-12-20 21:25:05
|
Update of /cvsroot/super-tux/supertux/lib/lisp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28891/lib/lisp Modified Files: parser.cpp Log Message: implemented a new object factory mechanism which is now really independent of the objects Index: parser.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/lisp/parser.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- parser.cpp 2 Dec 2004 01:41:57 -0000 1.3 +++ parser.cpp 20 Dec 2004 21:24:21 -0000 1.4 @@ -119,8 +119,6 @@ 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 { |