diff options
author | dgp <dgp@noemail.net> | 2001-11-09 23:06:04 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2001-11-09 23:06:04 (GMT) |
commit | 7a7b8c43c3f129a7de5999c4ad1b6472f291f434 (patch) | |
tree | 012268e5787a44230c1be5af754701e4f9152a3a /generic/tclVar.c | |
parent | 0e527773840343f416c5ea92599845dce1ec94a9 (diff) | |
download | tcl-7a7b8c43c3f129a7de5999c4ad1b6472f291f434.zip tcl-7a7b8c43c3f129a7de5999c4ad1b6472f291f434.tar.gz tcl-7a7b8c43c3f129a7de5999c4ad1b6472f291f434.tar.bz2 |
* tests/var.test:
* generic/tclVar.c: Corrected bug in [global] when dealing
with variable names matching :*. [Bug 480176]
FossilOrigin-Name: ea9824f0659505bdd43b025fa59b4be99ff14d3f
Diffstat (limited to 'generic/tclVar.c')
-rw-r--r-- | generic/tclVar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclVar.c b/generic/tclVar.c index d3e2c4b..d4290d0 100644 --- a/generic/tclVar.c +++ b/generic/tclVar.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclVar.c,v 1.38 2001/09/27 20:32:35 dgp Exp $ + * RCS: @(#) $Id: tclVar.c,v 1.39 2001/11/09 23:06:04 dgp Exp $ */ #include "tclInt.h" @@ -4010,7 +4010,7 @@ Tcl_GlobalObjCmd(dummy, interp, objc, objv) while ((tail > varName) && ((*tail != ':') || (*(tail-1) != ':'))) { tail--; } - if (*tail == ':') { + if ((*tail == ':') && (tail > varName)) { tail++; } |