summaryrefslogtreecommitdiffstats
path: root/generic/tclStubLib.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2012-11-29 14:47:12 (GMT)
committerdgp <dgp@users.sourceforge.net>2012-11-29 14:47:12 (GMT)
commit8bdf6a3cdd5c1ace4435d972fd5f183ce4f3e18c (patch)
tree7f2d334288ada89fc4cc60268e8adf55d156fce5 /generic/tclStubLib.c
parent0b73c62416cae2c14de0924d798addd849cb5ac2 (diff)
downloadtcl-8bdf6a3cdd5c1ace4435d972fd5f183ce4f3e18c.zip
tcl-8bdf6a3cdd5c1ace4435d972fd5f183ce4f3e18c.tar.gz
tcl-8bdf6a3cdd5c1ace4435d972fd5f183ce4f3e18c.tar.bz2
3588687 When detecting incompatibility during stubs initialization, the error
message has always assumed a stubs-disabled 8.0 interp to be the cause. That's no longer a good assumption. More suitable error message committed.
Diffstat (limited to 'generic/tclStubLib.c')
-rw-r--r--generic/tclStubLib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclStubLib.c b/generic/tclStubLib.c
index 1ab7ff3..7bf04a0 100644
--- a/generic/tclStubLib.c
+++ b/generic/tclStubLib.c
@@ -47,7 +47,7 @@ HasStubSupport (interp)
if (iPtr->stubTable && (iPtr->stubTable->magic == TCL_STUB_MAGIC)) {
return iPtr->stubTable;
}
- interp->result = "This interpreter does not support stubs-enabled extensions.";
+ interp->result = "interpreter uses an incompatible stubs mechanism";
interp->freeProc = TCL_STATIC;
return NULL;