diff options
author | Spider Boardman <spider@orb.nashua.nh.us> | 2000-08-31 12:10:15 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-09-01 14:01:52 +0000 |
commit | a5845cb7762e6c541992fa3dbeddbc9a60883460 (patch) | |
tree | 7640203d5ad8aac0c1a05fedeb56533b2cd3d336 /toke.c | |
parent | 6ad11d816f7ada926c1680f01c87123df5950886 (diff) | |
download | perl-a5845cb7762e6c541992fa3dbeddbc9a60883460.tar.gz |
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
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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)); |