summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2013-02-25 16:00:48 (GMT)
committerdgp@users.sourceforge.net <dgp>2013-02-25 16:00:48 (GMT)
commitd5d58bf25661cffce85d7c4b867636df3a4bcc8a (patch)
tree6191a8c622b7022e0f360b814e4c92fa6c53358b /generic/tclInt.h
parent04ab8f0ea362b1093750f06dc9831eb9290e60da (diff)
parent6c30270ac599add006b51e33023c6dab7e2f8b0f (diff)
downloadtcl-d5d58bf25661cffce85d7c4b867636df3a4bcc8a.zip
tcl-d5d58bf25661cffce85d7c4b867636df3a4bcc8a.tar.gz
tcl-d5d58bf25661cffce85d7c4b867636df3a4bcc8a.tar.bz2
Remove unused struct InterpList.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 641cfd0..66b7096 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -2178,17 +2178,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'.
*