diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-09-29 22:23:25 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-09-29 22:23:25 (GMT) |
commit | 9d8dfabf5faa8cdb48851e1087458f4431ab7f45 (patch) | |
tree | cae54244b8115d380177c093b766da1af2aece75 /generic/tclRegexp.c | |
parent | e6f98a12349b67e26d5f330d01ab742b40027f63 (diff) | |
download | tcl-9d8dfabf5faa8cdb48851e1087458f4431ab7f45.zip tcl-9d8dfabf5faa8cdb48851e1087458f4431ab7f45.tar.gz tcl-9d8dfabf5faa8cdb48851e1087458f4431ab7f45.tar.bz2 |
Remove unused variable
Diffstat (limited to 'generic/tclRegexp.c')
-rw-r--r-- | generic/tclRegexp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclRegexp.c b/generic/tclRegexp.c index f764bec..1909ed6 100644 --- a/generic/tclRegexp.c +++ b/generic/tclRegexp.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclRegexp.c,v 1.16 2004/09/29 22:17:30 dkf Exp $ + * RCS: @(#) $Id: tclRegexp.c,v 1.17 2004/09/29 22:23:25 dkf Exp $ */ #include "tclInt.h" @@ -561,7 +561,6 @@ Tcl_GetRegExpFromObj(interp, objPtr, flags) int flags; /* Regular expression compilation flags. */ { int length; - Tcl_ObjType *typePtr; TclRegexp *regexpPtr; char *pattern; |