Changeset 1438 for code/branches/console/src/core
- Timestamp:
- May 27, 2008, 4:30:15 AM (17 years ago)
- Location:
- code/branches/console/src/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/core/Script.cc
r1334 r1438 128 128 if (error == 0) 129 129 error = lua_pcall(luaState_, 0, 0, 0); 130 if (error != 0) COUT(2) << "Error in Lua-script: " << lua_tostring(luaState_, -1) << std::endl; 130 if (error != 0) 131 { 132 COUT(2) << "Error in Lua-script: " << lua_tostring(luaState_, -1) << std::endl; 133 } 131 134 } 132 135 -
code/branches/console/src/core/TclBind.cc
r1416 r1438 110 110 111 111 if (!CommandExecutor::execute(command, false)) 112 { 112 113 COUT(1) << "Error: Can't execute command \"" << command << "\"!" << std::endl; 114 } 113 115 114 116 if (CommandExecutor::getLastEvaluation().hasReturnvalue()) … … 124 126 125 127 if (!CommandExecutor::execute(command, false)) 128 { 126 129 COUT(1) << "Error: Can't execute command \"" << command << "\"!" << std::endl; 130 } 127 131 } 128 132 … … 133 137 std::string output = TclBind::getInstance().interpreter_->eval(tclcode); 134 138 if (output != "") 139 { 135 140 COUT(0) << "tcl> " << output << std::endl; 141 } 136 142 return output; 137 143 }
Note: See TracChangeset
for help on using the changeset viewer.