diff options
author | dgp <dgp@users.sourceforge.net> | 2008-04-01 19:31:09 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-04-01 19:31:09 (GMT) |
commit | 353bf57ae4b468d9b9893f9fbf85b5994d100f0d (patch) | |
tree | ef520450ba3568fe74dffbf3eba40a3b5fd52df9 /generic/tclPkg.c | |
parent | bf5d97242b6f536923ad5dff2f2835cf019d336f (diff) | |
download | tcl-353bf57ae4b468d9b9893f9fbf85b5994d100f0d.zip tcl-353bf57ae4b468d9b9893f9fbf85b5994d100f0d.tar.gz tcl-353bf57ae4b468d9b9893f9fbf85b5994d100f0d.tar.bz2 |
* generic/tclStubLib.c (Tcl_InitStubs): Added missing error message.
* generic/tclPkg.c (Tcl_PkgInitStubsCheck):
Diffstat (limited to 'generic/tclPkg.c')
-rw-r--r-- | generic/tclPkg.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclPkg.c b/generic/tclPkg.c index 8f9ec50..fe23fd2 100644 --- a/generic/tclPkg.c +++ b/generic/tclPkg.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclPkg.c,v 1.34 2007/12/13 15:23:20 dgp Exp $ + * RCS: @(#) $Id: tclPkg.c,v 1.34.2.1 2008/04/01 19:31:12 dgp Exp $ * * TIP #268. * Heavily rewritten to handle the extend version numbers, and extended @@ -1868,6 +1868,8 @@ Tcl_PkgInitStubsCheck( } if (count == 1) { if (0 != strncmp(version, actualVersion, strlen(version))) { + /* Construct error message */ + Tcl_PkgPresent(interp, "Tcl", version, 1); return NULL; } } else { |