Index: generic/nsfCompile.c =================================================================== diff -u -N -r62dc29237e6a643169841f002784c7dc0b29f201 -r30e90f77c00ffc280245a7f61ae2a8854c546ed8 --- generic/nsfCompile.c (.../nsfCompile.c) (revision 62dc29237e6a643169841f002784c7dc0b29f201) +++ generic/nsfCompile.c (.../nsfCompile.c) (revision 30e90f77c00ffc280245a7f61ae2a8854c546ed8) @@ -104,7 +104,7 @@ assert(envPtr != NULL); if (parsePtr->numWords != 1) { - return TCL_OUT_LINE_COMPILE; + return TCL_ERROR; } TclEmitOpcode(instructions[INST_NEXT].bytecode, envPtr); envPtr->maxStackDepth = 0; @@ -124,7 +124,7 @@ assert(envPtr != NULL); if (parsePtr->numWords != 1) { - return TCL_OUT_LINE_COMPILE; + return TCL_ERROR; } TclEmitOpcode(instructions[INST_SELF].bytecode, envPtr); envPtr->maxStackDepth = 0; @@ -152,7 +152,7 @@ */ if (parsePtr->numWords > 255) { - return TCL_OUT_LINE_COMPILE; + return TCL_ERROR; } /*TclEmitOpcode(instructions[INST_SELF].bytecode, envPtr);*/