diff options
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 62a8fee..25a150a 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.288 2006/10/28 23:36:18 dkf Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.289 2006/10/31 13:46:31 dkf Exp $ */ #ifndef _TCLINT @@ -1547,19 +1547,6 @@ typedef struct Interp { int packagePrefer; /* Current package selection mode. */ /* - * Let [info level] know about ensemble rewriting. Note that this is just - * a temporary storage location until such time as it can be written into - * the call frame; it has to go there because that makes reentrant calls - * through the command dispatcher work. - */ - - int callObjc; /* Number of arguments to report through [info - * level]. */ - Tcl_Obj *CONST *callObjv; /* Array of arguments to report through [info - * level]. */ - - - /* * Statistical information about the bytecode compiler and interpreter's * operation. */ @@ -1577,8 +1564,8 @@ typedef struct Interp { typedef struct InterpList { Interp *interpPtr; - struct InterpList* prevPtr; - struct InterpList* nextPtr; + struct InterpList *prevPtr; + struct InterpList *nextPtr; } InterpList; /* |