summaryrefslogtreecommitdiff
path: root/regexp.h
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2012-05-16 10:06:30 +0100
committerDavid Mitchell <davem@iabyn.com>2012-06-13 13:32:53 +0100
commit1ca2007ef74b65c3595a4c1d7d4b8500e2585721 (patch)
treeff9710f4c72f4c0673070e82ca81d249f2609cf2 /regexp.h
parentb3fd53f35858a4ca5c7226ba0fa5a9e864378c38 (diff)
downloadperl-1ca2007ef74b65c3595a4c1d7d4b8500e2585721.tar.gz
make regexp_paren_pair.start_tmp an offset
Currently the start_tmp field is a pointer into the string, whereas the the start and end fields are offsets within that string. Make start_tmp an offset too for consistency.
Diffstat (limited to 'regexp.h')
-rw-r--r--regexp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexp.h b/regexp.h
index 4782ac6d1a..2f02157308 100644
--- a/regexp.h
+++ b/regexp.h
@@ -61,7 +61,7 @@ typedef struct regexp_paren_pair {
* "abc" =~ /(.(?{print "[$1]"}))+/
*outputs [][a][b]
* This field is not part of the API. */
- char *start_tmp;
+ I32 start_tmp;
} regexp_paren_pair;
#if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_UTF8_C)