diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-14 01:00:15 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-14 01:00:15 +0000 |
commit | 9e67d94e6e4396a78a2012441f9359240f5b4bdd (patch) | |
tree | fc1c6466e151f0e066a87df256b70d1b8cc35a91 /toke.c | |
parent | 9d8a25dc64d23dcd5730db9be0dbe94a107e1f8b (diff) | |
parent | b17fe6e572cf341e620c89fc18fb670ef7f916a6 (diff) | |
download | perl-9e67d94e6e4396a78a2012441f9359240f5b4bdd.tar.gz |
[asperl] bring ASPerl uptodate with mainline changes
p4raw-id: //depot/asperl@524
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -662,7 +662,7 @@ STATIC I32 sublex_push(void) { dTHR; - push_scope(); + ENTER; lex_state = sublex_info.super_state; SAVEI32(lex_dojoin); @@ -748,7 +748,7 @@ sublex_done(void) return ','; } else { - pop_scope(); + LEAVE; bufend = SvPVX(linestr); bufend += SvCUR(linestr); expect = XOPERATOR; |