summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorapnadkarni <apnmbx-wits@yahoo.com>2022-07-15 15:50:26 (GMT)
committerapnadkarni <apnmbx-wits@yahoo.com>2022-07-15 15:50:26 (GMT)
commit269b0fd3c44a9cbb3afb12f6164598f1e26c229c (patch)
tree21d7e5226dee49bbc8e669115e8acffc2c432eb3 /generic/tclInt.h
parent91c060ce823f97838cb5ef520600d9b63e13a027 (diff)
downloadtcl-269b0fd3c44a9cbb3afb12f6164598f1e26c229c.zip
tcl-269b0fd3c44a9cbb3afb12f6164598f1e26c229c.tar.gz
tcl-269b0fd3c44a9cbb3afb12f6164598f1e26c229c.tar.bz2
Start on list representation black box tests
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index b892a7b..06ec2ad 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -2500,6 +2500,9 @@ typedef struct ListSpan {
ListSizeT spanLength; /* Number of elements in the span */
int refCount; /* Count of references to this span record */
} ListSpan;
+#ifndef LIST_SPAN_THRESHOLD /* May be set on build line */
+#define LIST_SPAN_THRESHOLD 101
+#endif
/*
* ListRep --