newCONSTSUB had private MY_start_subparse.
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>
Mon, 16 Mar 1998 16:39:23 +0000 (16:39 +0000)
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>
Mon, 16 Mar 1998 16:39:23 +0000 (16:39 +0000)
p4raw-id: //depot/perl@826

op.c

diff --git a/op.c b/op.c
index b636a91..0ac85b8 100644 (file)
--- a/op.c
+++ b/op.c
@@ -3531,7 +3531,7 @@ newCONSTSUB(HV *stash, char *name, SV *sv)
        curstash = curcop->cop_stash = stash;
 
     newSUB(
-       MY_start_subparse(FALSE, 0),
+       start_subparse(FALSE, 0),
        newSVOP(OP_CONST, 0, newSVpv(name,0)),
        newSVOP(OP_CONST, 0, &sv_no),   /* SvPV(&sv_no) == "" -- GMB */
        newSTATEOP(0, Nullch, newSVOP(OP_CONST, 0, sv))