summaryrefslogtreecommitdiffstats
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)
commite2ddd4a2fdbc65a17ef64706dabab8831b996c68 (patch)
tree7f2d334288ada89fc4cc60268e8adf55d156fce5
parent8e1d78b43a4a07205cade3283d6414aa74467fbc (diff)
downloadtcl-e2ddd4a2fdbc65a17ef64706dabab8831b996c68.zip
tcl-e2ddd4a2fdbc65a17ef64706dabab8831b996c68.tar.gz
tcl-e2ddd4a2fdbc65a17ef64706dabab8831b996c68.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.
-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;