summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
Diffstat (limited to 'generic')
-rw-r--r--generic/tclExecute.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 8e6a056..fc1ca9c 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclExecute.c,v 1.379 2008/07/14 01:38:00 msofer Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.380 2008/07/14 02:03:53 msofer Exp $
*/
#include "tclInt.h"
@@ -1495,17 +1495,6 @@ TclCompileObj(
register ByteCode *codePtr; /* Tcl Internal type of bytecode. */
Namespace *namespacePtr;
- /*
- * Check that the interpreter is ready to execute scripts. Note that we
- * manage the interp's runlevel here: it is a small white lie (maybe), but
- * saves a ++/-- pair at each invocation. Amazingly enough, the impact on
- * performance is noticeable.
- */
-
- if (TclInterpReady(interp) == TCL_ERROR) {
- return NULL;
- }
-
namespacePtr = iPtr->varFramePtr->nsPtr;
/*