summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-05-08 06:53:00 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-05-08 06:53:00 (GMT)
commit9d68b2dbd19c376370345b938be80f15aab880d4 (patch)
tree2cfc548841ebff7b015fbd38f8ba168c50272202 /generic/tclInt.h
parenta5482cc2a7fdc67be65d9d9927f5047222b18b62 (diff)
downloadtcl-9d68b2dbd19c376370345b938be80f15aab880d4.zip
tcl-9d68b2dbd19c376370345b938be80f15aab880d4.tar.gz
tcl-9d68b2dbd19c376370345b938be80f15aab880d4.tar.bz2
Make more clear that TCL_INDEX_END|TCL_INDEX_NONE not necessary are int's (in Tcl 9 they are not).
Eliminate use of (local) list_index_t type
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 8453fba..e76b2a8 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -4545,7 +4545,7 @@ MODULE_SCOPE void TclDbInitNewObj(Tcl_Obj *objPtr, const char *file,
(bignum).alloc = (bignumPayload >> 15) & 0x7fff; \
(bignum).used = bignumPayload & 0x7fff; \
} \
- } while (0)
+ } while (0)
/*
*----------------------------------------------------------------