diff options
| author | dgp@users.sourceforge.net <dgp> | 2012-11-29 14:54:51 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2012-11-29 14:54:51 (GMT) |
| commit | bd3b67e1ce44adcd803a570804fea08d433c58b2 (patch) | |
| tree | 95cde57a7d9446853eb33886d7db8ee7a5722299 | |
| parent | 632aa1fdc7ecec34b42d1593f97522fbb8205f0f (diff) | |
| parent | 28c6a54b6b434329e26742d2f7fb9591d3bd2859 (diff) | |
| download | tcl-bd3b67e1ce44adcd803a570804fea08d433c58b2.zip tcl-bd3b67e1ce44adcd803a570804fea08d433c58b2.tar.gz tcl-bd3b67e1ce44adcd803a570804fea08d433c58b2.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.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclStubLib.c b/generic/tclStubLib.c index f569820..91012fd 100644 --- a/generic/tclStubLib.c +++ b/generic/tclStubLib.c @@ -41,9 +41,7 @@ HasStubSupport( if (iPtr->stubTable && (iPtr->stubTable->magic == TCL_STUB_MAGIC)) { return iPtr->stubTable; } - - iPtr->result = - (char *)"This interpreter does not support stubs-enabled extensions."; + iPtr->result = (char *) "interpreter uses an incompatible stubs mechanism"; iPtr->freeProc = TCL_STATIC; return NULL; } |
