diff options
author | aspect <aspect+tclcore@abstracted-spleen.org> | 2017-02-12 12:17:35 (GMT) |
---|---|---|
committer | aspect <aspect+tclcore@abstracted-spleen.org> | 2017-02-12 12:17:35 (GMT) |
commit | a081c18d9d5c30c00085cb0fe6ad00b9e6de40d2 (patch) | |
tree | 6e3c23e2ea89a0fad7920f348ba1e65b18625183 /generic/tclCmdIL.c | |
parent | 304de510732b5bf301c6d97ca26f876dca26886e (diff) | |
download | tcl-bug_58b96f6744.zip tcl-bug_58b96f6744.tar.gz tcl-bug_58b96f6744.tar.bz2 |
make [info commands] follow the namespace path from :: (bug [58b96f6744])bug_58b96f6744
Diffstat (limited to 'generic/tclCmdIL.c')
-rw-r--r-- | generic/tclCmdIL.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c index b303bb6..6972f59 100644 --- a/generic/tclCmdIL.c +++ b/generic/tclCmdIL.c @@ -670,7 +670,7 @@ InfoCommandsCmd( Tcl_SetObjResult(interp, listPtr); return TCL_OK; } - if ((nsPtr != globalNsPtr) && !specificNsInPattern) { + if (!specificNsInPattern) { Tcl_HashTable *tablePtr = NULL; /* Quell warning. */ for (i=0 ; i<nsPtr->commandPathLength ; i++) { |