summaryrefslogtreecommitdiffstats
path: root/generic/tclOOMethod.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclOOMethod.c')
-rw-r--r--generic/tclOOMethod.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/generic/tclOOMethod.c b/generic/tclOOMethod.c
index 628090f..03d19b8 100644
--- a/generic/tclOOMethod.c
+++ b/generic/tclOOMethod.c
@@ -14,7 +14,6 @@
#endif
#include "tclInt.h"
#include "tclOOInt.h"
-#include "tclCompile.h"
/*
* Structure used to contain all the information needed about a call frame
@@ -713,12 +712,8 @@ PushMethodCallFrame(
* alternative is *so* slow...
*/
- if (pmPtr->procPtr->bodyPtr->typePtr == &tclByteCodeType) {
- ByteCode *codePtr =
- pmPtr->procPtr->bodyPtr->internalRep.otherValuePtr;
+ TclForceBodyNS(pmPtr->procPtr->bodyPtr, nsPtr);
- codePtr->nsPtr = nsPtr;
- }
result = TclProcCompileProc(interp, pmPtr->procPtr,
pmPtr->procPtr->bodyPtr, nsPtr, "body of method", namePtr);
if (result != TCL_OK) {