Oops. Left icode output on by default, now off.

git-svn-id: svn://10.0.0.236/trunk@75595 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
2000-08-04 20:37:42 +00:00
parent 609feb88b0
commit 3e8715b85d
2 changed files with 6 additions and 2 deletions

View File

@@ -235,7 +235,9 @@ static void readEvalPrint(FILE *in, World &world)
// list of zero or more statements
ICodeModule* icm = cx.genCode(parsedStatements, ConsoleName);
if (icm) {
stdOut << *icm;
#ifdef SHOW_ICODE
stdOut << *icm;
#endif
JSValue result = cx.interpret(icm, JSValues());
stdOut << "result = " << result << "\n";
delete icm;