summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-03-16 16:39:23 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-03-16 16:39:23 +0000
commitbe24f278f8b3ac1c7405c125d395bd1cc2a3d55e (patch)
tree3bc7d40aaa22024292f377ef83f4a0e228ba634c
parent6ff68fdd012a86829ad37b67861f3bf7ea777480 (diff)
downloadperl-be24f278f8b3ac1c7405c125d395bd1cc2a3d55e.tar.gz
newCONSTSUB had private MY_start_subparse.
p4raw-id: //depot/perl@826
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index b636a91c5c..0ac85b87a6 100644
--- 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))