summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2013-02-25 16:41:46 (GMT)
committerdgp@users.sourceforge.net <dgp>2013-02-25 16:41:46 (GMT)
commite9d3e3ec7e3908f258cabddb5823fbc37962e074 (patch)
tree3f8a55faf330a9a983131443fcddde5f4c27f483 /generic/tclInt.h
parentd5d58bf25661cffce85d7c4b867636df3a4bcc8a (diff)
parent5b91fa67c8cccc31135b73137bafa083173cf956 (diff)
downloadtcl-e9d3e3ec7e3908f258cabddb5823fbc37962e074.zip
tcl-e9d3e3ec7e3908f258cabddb5823fbc37962e074.tar.gz
tcl-e9d3e3ec7e3908f258cabddb5823fbc37962e074.tar.bz2
LimitHandler struct used only locally. Remove from tclInt.h
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 66b7096..1f939c0 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -2282,35 +2282,6 @@ typedef struct Interp {
#define MAX_NESTING_DEPTH 1000
/*
- * TIP#143 limit handler internal representation.
- */
-
-struct LimitHandler {
- int flags; /* The state of this particular handler. */
- Tcl_LimitHandlerProc *handlerProc;
- /* The handler callback. */
- ClientData clientData; /* Opaque argument to the handler callback. */
- Tcl_LimitHandlerDeleteProc *deleteProc;
- /* How to delete the clientData. */
- LimitHandler *prevPtr; /* Previous item in linked list of
- * handlers. */
- LimitHandler *nextPtr; /* Next item in linked list of handlers. */
-};
-
-/*
- * Values for the LimitHandler flags field.
- * LIMIT_HANDLER_ACTIVE - Whether the handler is currently being
- * processed; handlers are never to be entered reentrantly.
- * LIMIT_HANDLER_DELETED - Whether the handler has been deleted. This
- * should not normally be observed because when a handler is
- * deleted it is also spliced out of the list of handlers, but
- * even so we will be careful.
- */
-
-#define LIMIT_HANDLER_ACTIVE 0x01
-#define LIMIT_HANDLER_DELETED 0x02
-
-/*
* The macro below is used to modify a "char" value (e.g. by casting it to an
* unsigned character) so that it can be used safely with macros such as
* isspace.