summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-12-08 02:22:31 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-12-08 02:22:31 +0000
commite8347627432a616ec1485de221b2cd8c9e311c8b (patch)
treefc61d6fefbec8f2731573b6fda30cb8a504a34ae /regcomp.c
parentbebdddfcca3c4bc8bb36ffcdf9e008f3b39772bf (diff)
downloadperl-e8347627432a616ec1485de221b2cd8c9e311c8b.tar.gz
introduce save_I8() for saving byte values
p4raw-id: //depot/perl@4665
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regcomp.c b/regcomp.c
index 0d6b581b74..0a7638426c 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -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);