summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorGisle Aas <gisle@aas.no>2006-01-27 06:46:00 -0800
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-11-02 11:14:42 +0000
commitcfc4a7da389202132834a0ef4ed2d46dd167c176 (patch)
treeae77ff805a66e190133b5ffc15238751f0c72ca1 /op.c
parentf9c6ae86dc1f6723c795186e5f64836b2e6c2f01 (diff)
downloadperl-cfc4a7da389202132834a0ef4ed2d46dd167c176.tar.gz
Re: $, and say
Message-ID: <lrek2t1e8n.fsf@caliper.activestate.com> with tweaks so "say;" continues to default to $_ plus a regression test p4raw-id: //depot/perl@29187
Diffstat (limited to 'op.c')
-rw-r--r--op.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/op.c b/op.c
index 0ebaedd43b..a6346f696d 100644
--- a/op.c
+++ b/op.c
@@ -6754,16 +6754,6 @@ Perl_ck_listiob(pTHX_ OP *o)
}
OP *
-Perl_ck_say(pTHX_ OP *o)
-{
- o = ck_listiob(o);
- o->op_type = OP_PRINT;
- cLISTOPo->op_last = cLISTOPo->op_last->op_sibling
- = newSVOP(OP_CONST, 0, newSVpvs("\n"));
- return o;
-}
-
-OP *
Perl_ck_smartmatch(pTHX_ OP *o)
{
dVAR;