diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-08 02:22:31 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-08 02:22:31 +0000 |
commit | e8347627432a616ec1485de221b2cd8c9e311c8b (patch) | |
tree | fc61d6fefbec8f2731573b6fda30cb8a504a34ae /regcomp.c | |
parent | bebdddfcca3c4bc8bb36ffcdf9e008f3b39772bf (diff) | |
download | perl-e8347627432a616ec1485de221b2cd8c9e311c8b.tar.gz |
introduce save_I8() for saving byte values
p4raw-id: //depot/perl@4665
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3518,7 +3518,7 @@ Perl_save_re_context(pTHX) SAVEVPTR(PL_regendp); /* Ditto for endp. */ SAVEVPTR(PL_reglastparen); /* Similarly for lastparen. */ SAVEPPTR(PL_regtill); /* How far we are required to go. */ - SAVEI32(PL_regprev); /* char before regbol, \n if none */ + SAVEI8(PL_regprev); /* char before regbol, \n if none */ SAVEVPTR(PL_reg_start_tmp); /* from regexec.c */ PL_reg_start_tmp = 0; SAVEFREEPV(PL_reg_start_tmp); |