diff options
author | dgp <dgp@users.sourceforge.net> | 2013-02-25 15:57:07 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-02-25 15:57:07 (GMT) |
commit | d42bd814b5a7244586c488cbb7dd09d927949a4b (patch) | |
tree | 54bf5d0f21671445c782b6c4029122f8b8d4be63 /generic | |
parent | 1a5fadcb2c9b5d2449ed657899373b19443e4a75 (diff) | |
download | tcl-d42bd814b5a7244586c488cbb7dd09d927949a4b.zip tcl-d42bd814b5a7244586c488cbb7dd09d927949a4b.tar.gz tcl-d42bd814b5a7244586c488cbb7dd09d927949a4b.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 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'. * |