diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2007-08-08 18:34:39 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2007-08-08 18:34:39 (GMT) |
commit | c09706844a1d35de932fbd769a035daedf0f0fe4 (patch) | |
tree | 8f7b3647d35f90908687ff19cb3c93e59198afdf /generic/tclInt.h | |
parent | acb6c01d805b714bf8d7250125ca8a673a6304ac (diff) | |
download | tcl-c09706844a1d35de932fbd769a035daedf0f0fe4.zip tcl-c09706844a1d35de932fbd769a035daedf0f0fe4.tar.gz tcl-c09706844a1d35de932fbd769a035daedf0f0fe4.tar.bz2 |
* generic/tclInt.h: remove comments refering to VAR_SCALAR, as
that flag bit does not exist any longer.
* generic/tclProc.c (InitCompiledLocals): removed optimisation for
non-resolved case, as the function is never called in that case.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index c55bf93..f5f7c9b 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.329 2007/08/07 17:28:39 msofer Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.330 2007/08/08 18:34:40 msofer Exp $ */ #ifndef _TCLINT @@ -834,9 +834,8 @@ typedef struct CompiledLocal { * variables in the procedure call frame. */ int flags; /* Flag bits for the local variable. Same as * the flags for the Var structure above, - * although only VAR_SCALAR, VAR_ARRAY, - * VAR_LINK, VAR_ARGUMENT, VAR_TEMPORARY, and - * VAR_RESOLVED make sense. */ + * although only VAR_ARGUMENT, VAR_TEMPORARY, + * and VAR_RESOLVED make sense. */ Tcl_Obj *defValuePtr; /* Pointer to the default value of an * argument, if any. NULL if not an argument * or, if an argument, no default value. */ |