diff options
| author | Miguel Sofer <miguel.sofer@gmail.com> | 2002-07-29 15:56:53 (GMT) |
|---|---|---|
| committer | Miguel Sofer <miguel.sofer@gmail.com> | 2002-07-29 15:56:53 (GMT) |
| commit | 885c24c3c116f82090a3dc5e5fd5fdab8e6f66bb (patch) | |
| tree | 3f080f45cb9304d12e125a5dcda51cac698ad730 /generic/tclObj.c | |
| parent | f4ad55f3b75dedd30fcbaf63214922915688c926 (diff) | |
| download | tcl-885c24c3c116f82090a3dc5e5fd5fdab8e6f66bb.zip tcl-885c24c3c116f82090a3dc5e5fd5fdab8e6f66bb.tar.gz tcl-885c24c3c116f82090a3dc5e5fd5fdab8e6f66bb.tar.bz2 | |
bugfix, new tests for new [interp alias] code
Diffstat (limited to 'generic/tclObj.c')
| -rw-r--r-- | generic/tclObj.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c index 9dc2b90..926fa9f 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclObj.c,v 1.33 2002/04/26 08:34:35 dkf Exp $ + * RCS: @(#) $Id: tclObj.c,v 1.34 2002/07/29 15:56:54 msofer Exp $ */ #include "tclInt.h" @@ -2852,9 +2852,8 @@ Tcl_GetCommandFromObj(interp, objPtr) register Tcl_Obj *objPtr; /* The object containing the command's * name. If the name starts with "::", will * be looked up in global namespace. Else, - * looked up first in the current namespace - * if contextNsPtr is NULL, then in global - * namespace. */ + * looked up first in the current namespace, + * then in global namespace. */ { Interp *iPtr = (Interp *) interp; register ResolvedCmdName *resPtr; |
