Index: generic/nsfCompile.c =================================================================== diff -u -reea1c3907d9df65b1e1f80a0d19df35a5dc33d50 -rab5097b110d11556bd7b32faace2fd6cae23b6e5 --- generic/nsfCompile.c (.../nsfCompile.c) (revision eea1c3907d9df65b1e1f80a0d19df35a5dc33d50) +++ generic/nsfCompile.c (.../nsfCompile.c) (revision ab5097b110d11556bd7b32faace2fd6cae23b6e5) @@ -78,7 +78,7 @@ int code, wordIdx; /* fprintf(stderr, "****** selfDispatchCompile words=%d tokens=%d, avail=%d\n", - parsePtr->numWords,parsePtr->numTokens,parsePtr->tokensAvailable); + parsePtr->numWords, parsePtr->numTokens, parsePtr->tokensAvailable); */ if (parsePtr->numWords > 255) @@ -92,20 +92,20 @@ /* fprintf(stderr," %d: %p token type=%d size=%d\n", - wordIdx,tokenPtr,tokenPtr->type,tokenPtr->size ); + wordIdx, tokenPtr, tokenPtr->type, tokenPtr->size ); */ if (tokenPtr->type == TCL_TOKEN_SIMPLE_WORD) { TclEmitPush(TclRegisterLiteral(envPtr, tokenPtr->start, tokenPtr->size, 0), envPtr); envPtr->maxStackDepth = 1; /* fprintf(stderr," %d: simple '%s' components=%d\n", - wordIdx,tokenPtr->start, tokenPtr->numComponents); + wordIdx, tokenPtr->start, tokenPtr->numComponents); */ } else { /* fprintf(stderr," %d NOT simple '%s' components=%d\n", - wordIdx,tokenPtr->start, tokenPtr->numComponents); + wordIdx, tokenPtr->start, tokenPtr->numComponents); */ code = TclCompileTokens(interp, tokenPtr+1, tokenPtr->numComponents, envPtr); @@ -115,7 +115,7 @@ } } - /*fprintf(stderr, "maxdepth=%d, onStack=%d\n",envPtr->maxStackDepth,wordIdx); + /*fprintf(stderr, "maxdepth=%d, onStack=%d\n", envPtr->maxStackDepth, wordIdx); */ TclEmitInstInt1(instructions[INST_SELF_DISPATCH].bytecode, wordIdx, envPtr); envPtr->maxStackDepth = 0;