diff options
author | dgp <dgp@users.sourceforge.net> | 2008-04-01 19:20:55 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-04-01 19:20:55 (GMT) |
commit | 77a1bbf072b85ae503db1df8dfc011139df84c2d (patch) | |
tree | c157b4d40e96cdbce970cc07676154ace268072f /generic/tclStubLib.c | |
parent | 1b1fc7fb13ab288bc2f11cf549c8b0b05ecf7154 (diff) | |
download | tcl-77a1bbf072b85ae503db1df8dfc011139df84c2d.zip tcl-77a1bbf072b85ae503db1df8dfc011139df84c2d.tar.gz tcl-77a1bbf072b85ae503db1df8dfc011139df84c2d.tar.bz2 |
* generic/tclStubLib.c (Tcl_InitStubs): Added missing error message.
Diffstat (limited to 'generic/tclStubLib.c')
-rw-r--r-- | generic/tclStubLib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclStubLib.c b/generic/tclStubLib.c index 3457307..117e5cd 100644 --- a/generic/tclStubLib.c +++ b/generic/tclStubLib.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: tclStubLib.c,v 1.21 2007/12/13 15:23:20 dgp Exp $ + * RCS: @(#) $Id: tclStubLib.c,v 1.21.2.1 2008/04/01 19:21:06 dgp Exp $ */ /* @@ -123,6 +123,8 @@ Tcl_InitStubs( p++; q++; } if (*p) { + /* Construct error message */ + Tcl_PkgRequireEx(interp, "Tcl", version, 1, NULL); return NULL; } } else { |