diff options
author | dgp <dgp@users.sourceforge.net> | 2013-02-25 16:00:48 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-02-25 16:00:48 (GMT) |
commit | ab043720ba05c7b8ada42e6f81dfc27178b9ee5b (patch) | |
tree | 6191a8c622b7022e0f360b814e4c92fa6c53358b /generic | |
parent | 668a8c108fe1f273e3d214f8fbb76f0aaf5fd223 (diff) | |
parent | d42bd814b5a7244586c488cbb7dd09d927949a4b (diff) | |
download | tcl-ab043720ba05c7b8ada42e6f81dfc27178b9ee5b.zip tcl-ab043720ba05c7b8ada42e6f81dfc27178b9ee5b.tar.gz tcl-ab043720ba05c7b8ada42e6f81dfc27178b9ee5b.tar.bz2 |
Remove unused struct InterpList.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclInt.h | 11 |
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'. * |