diff options
author | dgp <dgp@users.sourceforge.net> | 2012-11-29 14:47:12 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-11-29 14:47:12 (GMT) |
commit | 8bdf6a3cdd5c1ace4435d972fd5f183ce4f3e18c (patch) | |
tree | 7f2d334288ada89fc4cc60268e8adf55d156fce5 /generic | |
parent | 0b73c62416cae2c14de0924d798addd849cb5ac2 (diff) | |
download | tcl-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')
-rw-r--r-- | generic/tclStubLib.c | 2 |
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; |