summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-04-26 16:02:00 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-04-26 16:02:00 (GMT)
commitc0d3b18e36ba15b38e066951ddf5adaf995be0d0 (patch)
treee3326a50e308a1c3c9f2df1ca9172f9bee1bc4ad /generic/tcl.h
parent77a24f6300a1d703cbf6d3173563eec904a56b2f (diff)
parent208f8c30a1c20162f7ec27c09afb7818153f254d (diff)
downloadtcl-c0d3b18e36ba15b38e066951ddf5adaf995be0d0.zip
tcl-c0d3b18e36ba15b38e066951ddf5adaf995be0d0.tar.gz
tcl-c0d3b18e36ba15b38e066951ddf5adaf995be0d0.tar.bz2
Merge 9.0
Diffstat (limited to 'generic/tcl.h')
-rw-r--r--generic/tcl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 7d8be54..44ea473 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -824,15 +824,15 @@ typedef struct Tcl_DString {
/*
* Flags that may be passed to Tcl_GetIndexFromObj.
* TCL_EXACT disallows abbreviated strings.
- * TCL_INDEX_TEMP_TABLE disallows caching of lookups. A possible use case is
- * a table that will not live long enough to make it worthwhile.
* TCL_INDEX_NULL_OK allows the empty string or NULL to return TCL_OK.
* The returned value will be -1;
+ * TCL_INDEX_TEMP_TABLE disallows caching of lookups. A possible use case is
+ * a table that will not live long enough to make it worthwhile.
*/
#define TCL_EXACT 1
-#define TCL_INDEX_TEMP_TABLE 2
#define TCL_INDEX_NULL_OK 32
+#define TCL_INDEX_TEMP_TABLE 64
/*
* Flags that may be passed to Tcl_UniCharToUtf.