diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-07-25 16:41:01 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-08-25 12:23:59 -0700 |
commit | 193941786d7a034dc215210b09aec6ee9257e10e (patch) | |
tree | ce751dc1bf2affac60797fea3faf180b7048c01b /regexp.h | |
parent | 99a90e5967b33d68a38c309edf24275f1c8a979f (diff) | |
download | perl-193941786d7a034dc215210b09aec6ee9257e10e.tar.gz |
Make $' work past the 2**31 threshold
Diffstat (limited to 'regexp.h')
-rw-r--r-- | regexp.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -124,7 +124,7 @@ struct reg_code_block { /* saved or original string so \digit works forever. */ \ char *subbeg; \ SV_SAVED_COPY /* If non-NULL, SV which is COW from original */\ - I32 sublen; /* Length of string pointed by subbeg */ \ + SSize_t sublen; /* Length of string pointed by subbeg */ \ I32 suboffset; /* byte offset of subbeg from logical start of str */ \ I32 subcoffset; /* suboffset equiv, but in chars (for @-/@+) */ \ /* Information about the match that isn't often used */ \ |