summaryrefslogtreecommitdiffstats
path: root/generic/tclRegexp.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2001-10-16 05:31:17 (GMT)
committerdgp <dgp@users.sourceforge.net>2001-10-16 05:31:17 (GMT)
commita6aca92723218392fb1a725dbe9fdbe5e9f4bd86 (patch)
tree423aa297b7e4d3d6fde03ebc45205a61d201476f /generic/tclRegexp.c
parent15c387a97b11f816847a8836a2f60e091b7ff7ff (diff)
downloadtcl-a6aca92723218392fb1a725dbe9fdbe5e9f4bd86.zip
tcl-a6aca92723218392fb1a725dbe9fdbe5e9f4bd86.tar.gz
tcl-a6aca92723218392fb1a725dbe9fdbe5e9f4bd86.tar.bz2
Undo of mistaken commit. Sorry!
Diffstat (limited to 'generic/tclRegexp.c')
-rw-r--r--generic/tclRegexp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclRegexp.c b/generic/tclRegexp.c
index 34e5f6f..37900f5 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.12 2001/10/16 05:10:34 dgp Exp $
+ * RCS: @(#) $Id: tclRegexp.c,v 1.13 2001/10/16 05:31:19 dgp Exp $
*/
#include "tclInt.h"
@@ -243,9 +243,9 @@ Tcl_RegExpRange(re, index, startPtr, endPtr)
int index; /* 0 means give the range of the entire
* match, > 0 means give the range of
* a matching subrange. */
- CONST char **startPtr; /* Store address of first character in
+ char **startPtr; /* Store address of first character in
* (sub-) range here. */
- CONST char **endPtr; /* Store address of character just after last
+ char **endPtr; /* Store address of character just after last
* in (sub-) range here. */
{
TclRegexp *regexpPtr = (TclRegexp *) re;