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 | 75164b5a8a9172465a393abd3e3a6d9c7674e7d8 (patch) | |
tree | 3f080f45cb9304d12e125a5dcda51cac698ad730 /generic/tclObj.c | |
parent | edeb2f602f676509e74e81b4d65bb966dc28e395 (diff) | |
download | tcl-75164b5a8a9172465a393abd3e3a6d9c7674e7d8.zip tcl-75164b5a8a9172465a393abd3e3a6d9c7674e7d8.tar.gz tcl-75164b5a8a9172465a393abd3e3a6d9c7674e7d8.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; |