diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-31 16:43:27 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-31 16:43:27 (GMT) |
commit | 22042ac17d28b7e80420612e880f6f4e3130db65 (patch) | |
tree | 6a344203c055c89c6bc0cb214b92128c1f8c2d60 /generic | |
parent | c29a0584716dc23c315d6fbaf3c578e5aef6412c (diff) | |
download | tcl-22042ac17d28b7e80420612e880f6f4e3130db65.zip tcl-22042ac17d28b7e80420612e880f6f4e3130db65.tar.gz tcl-22042ac17d28b7e80420612e880f6f4e3130db65.tar.bz2 |
Make [info globals ::foo] work. [Bug 1057461]
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclCmdIL.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c index c692ce7..5951df7 100644 --- a/generic/tclCmdIL.c +++ b/generic/tclCmdIL.c @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdIL.c,v 1.47.2.3 2004/10/14 15:28:38 dkf Exp $ + * RCS: @(#) $Id: tclCmdIL.c,v 1.47.2.4 2004/10/31 16:43:30 dkf Exp $ */ #include "tclInt.h" @@ -1082,7 +1082,15 @@ InfoGlobalsCmd(dummy, interp, objc, objv) if (objc == 2) { pattern = NULL; } else if (objc == 3) { - pattern = Tcl_GetString(objv[2]); + pattern = Tcl_GetString(objv[2]); + /* + * Strip leading global-namespace qualifiers. [Bug 1057461] + */ + if (pattern[0] == ':' && pattern[1] == ':') { + while (*pattern == ':') { + pattern++; + } + } } else { Tcl_WrongNumArgs(interp, 2, objv, "?pattern?"); return TCL_ERROR; |