summaryrefslogtreecommitdiffstats
path: root/generic/tclRegexp.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-03-09 13:08:33 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-03-09 13:08:33 (GMT)
commit254b4fa35fd51a8b78906d5d481f4e1c3901f8b2 (patch)
tree97669e54172fba0aeb8139e4bcde7e1a8a402826 /generic/tclRegexp.c
parent24cfa12d40215a41ab6507a92a20d8600e320d94 (diff)
parent42e6e9b167278c19dd2d9039fc434558bfc2c7f1 (diff)
downloadtcl-254b4fa35fd51a8b78906d5d481f4e1c3901f8b2.zip
tcl-254b4fa35fd51a8b78906d5d481f4e1c3901f8b2.tar.gz
tcl-254b4fa35fd51a8b78906d5d481f4e1c3901f8b2.tar.bz2
Merge 8.7
Diffstat (limited to 'generic/tclRegexp.c')
-rw-r--r--generic/tclRegexp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclRegexp.c b/generic/tclRegexp.c
index a21f4d7..0ddb65d 100644
--- a/generic/tclRegexp.c
+++ b/generic/tclRegexp.c
@@ -1052,12 +1052,11 @@ FreeRegexp(
static void
FinalizeRegexp(
- ClientData dummy) /* Not used. */
+ TCL_UNUSED(ClientData))
{
int i;
TclRegexp *regexpPtr;
ThreadSpecificData *tsdPtr = TCL_TSD_INIT(&dataKey);
- (void)dummy;
for (i = 0; (i < NUM_REGEXPS) && (tsdPtr->patterns[i] != NULL); i++) {
regexpPtr = tsdPtr->regexps[i];