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 | 19d84b74ea1085cedf2f5e4054115dfe1fc59dbe (patch) | |
tree | 6a344203c055c89c6bc0cb214b92128c1f8c2d60 /generic/tclCmdIL.c | |
parent | 28ba8f6461117bf90bc208df471cb45ece1fb56b (diff) | |
download | tcl-19d84b74ea1085cedf2f5e4054115dfe1fc59dbe.zip tcl-19d84b74ea1085cedf2f5e4054115dfe1fc59dbe.tar.gz tcl-19d84b74ea1085cedf2f5e4054115dfe1fc59dbe.tar.bz2 |
Make [info globals ::foo] work. [Bug 1057461]
Diffstat (limited to 'generic/tclCmdIL.c')
-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; |