summaryrefslogtreecommitdiffstats
path: root/generic/tclTestObj.c
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2020-09-02 21:04:25 (GMT)
committerfvogel <fvogelnew1@free.fr>2020-09-02 21:04:25 (GMT)
commit2b83b2c9993319e242389505cc899ceacdea58c5 (patch)
tree91349ef184de39e234838e41f35ea9b3ff03226b /generic/tclTestObj.c
parentebff38e9650909e43dff4244867212e6c4133a0e (diff)
downloadtcl-2b83b2c9993319e242389505cc899ceacdea58c5.zip
tcl-2b83b2c9993319e242389505cc899ceacdea58c5.tar.gz
tcl-2b83b2c9993319e242389505cc899ceacdea58c5.tar.bz2
Implementation of TIP #585 - Promote the INDEX_TEMP_TABLE flag of Tcl_GetIndexFromObj*() to the public interface
Diffstat (limited to 'generic/tclTestObj.c')
-rw-r--r--generic/tclTestObj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclTestObj.c b/generic/tclTestObj.c
index 99cb1f4..bd5d92e 100644
--- a/generic/tclTestObj.c
+++ b/generic/tclTestObj.c
@@ -627,7 +627,7 @@ TestindexobjCmd(
argv[objc-4] = NULL;
result = Tcl_GetIndexFromObj((setError? interp : NULL), objv[3],
- argv, "token", INDEX_TEMP_TABLE|(allowAbbrev? 0 : TCL_EXACT),
+ argv, "token", TCL_INDEX_TEMP_TABLE|(allowAbbrev? 0 : TCL_EXACT),
&index);
ckfree(argv);
if (result == TCL_OK) {