summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2013-02-25 15:57:07 (GMT)
committerdgp@users.sourceforge.net <dgp>2013-02-25 15:57:07 (GMT)
commit6c30270ac599add006b51e33023c6dab7e2f8b0f (patch)
tree54bf5d0f21671445c782b6c4029122f8b8d4be63
parent717c66f191517ad2a17a266777afa8bca8fe608b (diff)
downloadtcl-6c30270ac599add006b51e33023c6dab7e2f8b0f.zip
tcl-6c30270ac599add006b51e33023c6dab7e2f8b0f.tar.gz
tcl-6c30270ac599add006b51e33023c6dab7e2f8b0f.tar.bz2
Remove unused struct InterpList.
-rw-r--r--generic/tclInt.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 50280cc..1162638 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -1940,17 +1940,6 @@ typedef struct Interp {
*((iPtr)->asyncReadyPtr)
/*
- * 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'.
*