From: Spider Boardman Date: Thu, 31 Aug 2000 16:10:15 +0000 (-0400) Subject: Drop unused argument. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a5845cb7762e6c541992fa3dbeddbc9a60883460;p=p5sagit%2Fp5-mst-13.2.git Drop unused argument. Subject: Re: [ID 20000831.034] overload::constant and number of arguments. Message-Id: <200008312010.QAA20392@leggy.zk3.dec.com> p4raw-id: //depot/perl@6972 --- diff --git a/toke.c b/toke.c index a4f95a7..329d55f 100644 --- a/toke.c +++ b/toke.c @@ -5742,13 +5742,12 @@ S_new_constant(pTHX_ char *s, STRLEN len, const char *key, SV *sv, SV *pv, SAVETMPS; PUSHMARK(SP) ; - EXTEND(sp, 4); + EXTEND(sp, 3); if (pv) PUSHs(pv); PUSHs(sv); if (pv) PUSHs(typesv); - PUSHs(cv); PUTBACK; call_sv(cv, G_SCALAR | ( PL_in_eval ? 0 : G_EVAL));