summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-02-25 16:05:27 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-02-25 16:05:27 (GMT)
commitecf687e081191d5ebb3a46a54589f19e41a4d7d1 (patch)
tree0280479f8d4031702d496344666127e20e6d341f /generic/tclInt.h
parentd843409cf8bc0c2d015a8c6570c333c074af038e (diff)
parentab043720ba05c7b8ada42e6f81dfc27178b9ee5b (diff)
downloadtcl-ecf687e081191d5ebb3a46a54589f19e41a4d7d1.zip
tcl-ecf687e081191d5ebb3a46a54589f19e41a4d7d1.tar.gz
tcl-ecf687e081191d5ebb3a46a54589f19e41a4d7d1.tar.bz2
merge trunk.
Unicode 6.3 does not have that many spaces.....
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 4a5c821..b56275d 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -589,30 +589,6 @@ typedef struct ActiveVarTrace {
} ActiveVarTrace;
/*
- * The following structure describes an enumerative search in progress on an
- * array variable; this are invoked with options to the "array" command.
- */
-
-typedef struct ArraySearch {
- int id; /* Integer id used to distinguish among
- * multiple concurrent searches for the same
- * array. */
- struct Var *varPtr; /* Pointer to array variable that's being
- * searched. */
- Tcl_HashSearch search; /* Info kept by the hash module about progress
- * through the array. */
- Tcl_HashEntry *nextEntry; /* Non-null means this is the next element to
- * be enumerated (it's leftover from the
- * Tcl_FirstHashEntry call or from an "array
- * anymore" command). NULL means must call
- * Tcl_NextHashEntry to get value to
- * return. */
- struct ArraySearch *nextPtr;/* Next in list of all active searches for
- * this variable, or NULL if this is the last
- * one. */
-} ArraySearch;
-
-/*
* The structure below defines a variable, which associates a string name with
* a Tcl_Obj value. These structures are kept in procedure call frames (for
* local variables recognized by the compiler) or in the heap (for global
@@ -2175,17 +2151,6 @@ typedef struct Interp {
(iPtr)->flags &= (~(CANCELED | TCL_CANCEL_UNWIND))
/*
- * General list of interpreters. Doubly linked for easier removal of items
- * deep in the list.
- */
-
-typedef struct InterpList {
- Interp *interpPtr;
- struct InterpList *prevPtr;
- struct InterpList *nextPtr;
-} InterpList;
-
-/*
* Macros for splicing into and out of doubly linked lists. They assume
* existence of struct items 'prevPtr' and 'nextPtr'.
*