summaryrefslogtreecommitdiff
path: root/pp_ctl.c
Commit message (Collapse)AuthorAgeFilesLines
* improved 19064 (local $_[0] problems)Dave Mitchell2003-08-261-2/+6
| | | | | Message-ID: <20030824145159.GA12210@fdgroup.com> p4raw-id: //depot/perl@20909
* Retract #19064, broke mod_perl flushing (localisation of $|).Jarkko Hietaniemi2003-08-211-2/+2
| | | | | | http://public.activestate.com/cgi-bin/perlbrowse?patch=19064 http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-08/msg01466.html p4raw-id: //depot/perl@20795
* add "$lexical not available" warning in C<for my $lex ()>Dave Mitchell2003-08-091-0/+5
| | | | | Message-ID: <20030809135144.GC4997@fdgroup.com> p4raw-id: //depot/perl@20591
* [PATCH] Re: Perl formats do not work with tied valuesRafael Garcia-Suarez2003-07-211-0/+1
| | | | | | | | | | | | | From: Dave Mitchell <davem@fdgroup.com> Date: Tue, 15 Jul 2003 20:46:07 +0100 Message-ID: <20030715194607.GA24592@fdgroup.com> plus the regression test : Subject: Re: [PATCH] Re: Perl formats do not work with tied values From: Nicholas Clark <nick@ccl4.org> Date: Tue, 15 Jul 2003 22:24:04 +0100 Message-ID: <20030715222404.L20414@plum.flirble.org> p4raw-id: //depot/perl@20177
* DProf fixesRadu Greab2003-07-061-1/+4
| | | | | Message-ID: <16136.22456.99575.573777@ix.netsoft.ro> p4raw-id: //depot/perl@20034
* line numbers are given % 64kJames Jurach2003-07-021-9/+9
| | | | | Message-ID: <20030702183105.GA4837@lebowski> p4raw-id: //depot/perl@19934
* Fix [perl #21742] :Rafael Garcia-Suarez2003-06-251-3/+11
| | | | | | require() should always be called in scalar context, even when it's the last statement in an eval(""). p4raw-id: //depot/perl@19851
* Re: [perl #17934] tied STDERR and internal warningsSteve Grazzini2003-06-191-26/+1
| | | | | Message-ID: <20030618234237.GA6267@grazzini.net> p4raw-id: //depot/perl@19819
* Revert change #19126, a poor attempt at fixing bug #21742.Marcus Holland-Moritz2003-06-161-7/+1
| | | | | | | | | | | The test for #21742 is marked as TODO. Plus new regression tests from : Subject: [perl #22708] void context in string eval is broken From: "Marcus Holland-Moritz" (via RT) <perlbug-followup@perl.org> Message-ID: <rt-22708-59432.14.6755501393177@rt.perl.org> p4raw-link: @19126 on //depot/perl: a89be09a10c36299e755a956d356eb7f1f643437 p4raw-id: //depot/perl@19801
* unnecessary stringification in eval/dieSteve Grazzini2003-06-161-2/+2
| | | | | | | Message-ID: <20030615210226.56430.qmail@onion.perl.org> (See also <slrnbek5u6.cfi.joey@dragon.kitenet.net> in c.l.p.misc and bug #17763) p4raw-id: //depot/perl@19800
* Re: [perl #22299] goto doesn't find labelDave Mitchell2003-05-261-1/+1
| | | | | | | | | | | Date: Sat, 24 May 2003 12:25:17 +0100 Message-ID: <20030524112517.GA11761@fdgroup.com> Subject: [PATCH] Re: [perl #22299] goto doesn't find label From: Dave Mitchell <davem@fdgroup.com> Date: Mon, 26 May 2003 13:47:11 +0100 Message-ID: <20030526124710.GA17670@fdgroup.com> p4raw-id: //depot/perl@19625
* Introduce a new preprocessor symbol, PERL_DISABLE_PMC, toRafael Garcia-Suarez2003-05-211-4/+8
| | | | | | disable the loading of .pmc files if defined. Rename the function S_doopen_pmc to S_doopen_pm. p4raw-id: //depot/perl@19586
* [perl #7391] Perl crashes with certain write() formats.Dave Mitchell2003-05-111-1/+11
| | | | | Message-ID: <20030510004523.GC20871@fdgroup.com> p4raw-id: //depot/perl@19496
* Fix bug #15161 by increasing the refcount on the RE and making Artur Bergman2003-04-261-1/+12
| | | | | sure to restore it correctly. Deals with both s//e and s///g. p4raw-id: //depot/perl@19342
* goto &sub doesn't empty @_Dave Mitchell2003-04-201-0/+2
| | | | | Message-ID: <20030420204651.GE15591@fdgroup.com> p4raw-id: //depot/perl@19283
* Fix up Larry's copyright statements to my best knowledge.Jarkko Hietaniemi2003-04-161-1/+2
| | | | | | | (Lots of Perl 5 source code archaeology was involved.) Larry didn't make strangled noises when I showed him the patch, either :-) p4raw-id: //depot/perl@19242
* Fix bug #21742. require should be always invoked inRafael Garcia-Suarez2003-04-011-1/+7
| | | | | | | | | scalar context. This wasn't the case when called from an eval(""), because the void context doesn't propagate through the leaveeval op. Instead of making scalarvoid() handle OP_LEAVEEVAL -- this breaks AutoLoader -- implement a workaround in doeval(). p4raw-id: //depot/perl@19126
* [PATCH] Re: [perl #21542] local $_ [0] = $_ [0] fails.Dave Mitchell2003-03-261-2/+2
| | | | | | | | | | | Date: Thu, 20 Mar 2003 01:26:19 +0000 Message-ID: <20030320012619.C19869@fdgroup.com> Subject: Re: [PATCH] Re: [perl #21542] local $_ [0] = $_ [0] fails. From: Dave Mitchell <davem@fdgroup.com> Date: Mon, 24 Mar 2003 16:06:51 +0000 Message-ID: <20030324160651.D1798@fdgroup.com> p4raw-id: //depot/perl@19064
* [perl #9990] avoid goto &tmpsub coredumpDave Mitchell2003-03-181-0/+2
| | | | | Message-ID: <20030318215505.A16787@fdgroup.com> p4raw-id: //depot/perl@19025
* Patch by Salvador FandiƱo to read the warning maskRafael Garcia-Suarez2003-03-041-2/+12
| | | | | | | | returned by caller() and ${^WARNING_BITS} from $warnings::Bits{all} and not from the hardcoded core constant. (This mask could have been extended by warnings::register.) Plus tests. p4raw-id: //depot/perl@18829
* Update all copyrights to 2003, from JarkkoHugo van der Sanden2003-03-021-1/+1
| | | p4raw-id: //depot/perl@18801
* Further Unicode formats patching from Inaba Hiroto.Jarkko Hietaniemi2003-03-021-9/+20
| | | p4raw-id: //depot/perl@18794
* Re: [PATCH] Re: format, PerlIO and utf8Inaba Hiroto2003-02-261-11/+55
| | | | | Message-ID: <3E466E12.E5349D84@st.rim.or.jp> p4raw-id: //depot/perl@18785
* [perl #20684] [fix] s/// with (??{..}) inside returns wrong countAdrian M. Enache2003-02-251-1/+1
| | | | | Message-ID: <20030221154941.GA793@ratsnest.hole> p4raw-id: //depot/perl@18775
* Patching magic from Inaba-san's keyboard: fix for [perl #8769]:Jarkko Hietaniemi2003-02-241-3/+11
| | | | | | "scalar upgraded to UTF-8 as a side effect of quote-interpolation when 'use encoding' is engaged"-- wasn't actually encoding's fault. p4raw-id: //depot/perl@18764
* COW regexps:Nicholas Clark2003-02-161-5/+32
| | | | | | Subject: [PATCH] Copy on write for $& and $1... Message-ID: <20030209230008.GF299@Bagpuss.unfortu.net> p4raw-id: //depot/perl@18726
* Re: trying to fix #20154, #20357Adrian M. Enache2003-02-141-3/+7
| | | | | | Message-ID: <20030208190514.GA866@ratsnest.hole> (fixes #19061 as well) p4raw-id: //depot/perl@18703
* Re: [perl #20777] [PATCH] goto &subroutine leaks memoryAdrian M. Enache2003-02-101-0/+1
| | | | | Message-Id: <20030209201025.GA1247@ratsnest.hole> p4raw-id: //depot/perl@18688
* [perl #18232] [PATCH] store PL_reg_match_utf8 in reganchRafael Garcia-Suarez2003-02-021-1/+1
| | | | | Message-Id: <20030122223556.57d597a3.rgarciasuarez@free.fr> p4raw-id: //depot/perl@18633
* Introduce the PUSHSUB_DB macro, equivalent to PUSHSUB, butDave Mitchell2003-01-271-1/+1
| | | | | | | without the lval context tweak. Used in OP_DBSTATE. Subject: Re: [PATCH] Re: change #9754: 5 x slowdown for perl -d Message-ID: <20030126174242.H16182@fdgroup.com> p4raw-id: //depot/perl@18596
* OPf_SPECIAL on OP_DBSTATE now indicates a breakpoint.Dave Mitchell2003-01-261-1/+2
| | | | | | Subject: Re: [PATCH] Re: change #9754: 5 x slowdown for perl -d Message-ID: <20030124184419.F11179@fdgroup.com> p4raw-id: //depot/perl@18589
* Re: [perl #20408] SV's SvPVX get freed even when its SvLEN is zeroAdrian M. Enache2003-01-261-1/+2
| | | | | Message-Id: <20030126025548.GB812@ratsnest.hole> p4raw-id: //depot/perl@18579
* silence warningDave Mitchell2003-01-211-1/+1
| | | | | Message-ID: <20021229150931.C2325@fdgroup.com> p4raw-id: //depot/perl@18528
* label code in pp_ctl.cNicholas Clark2003-01-081-38/+20
| | | | | | | | | Message-ID: <20021226211935.GE284@Bagpuss.unfortu.net> (Integrated from change #18400 from maint-5.8) p4raw-link: @18400 on //depot/maint-5.8/perl: ab4e87da5f15e988acf1c2de6c4dc8360964c519 p4raw-id: //depot/perl@18464 p4raw-integrated: from //depot/maint-5.8/perl@18400 'merge in' pp_ctl.c (@18271..)
* %_ (was Re: [PATCH] operation on `PL_na' may be undefined)Nicholas Clark2003-01-071-3/+3
| | | | | Message-ID: <20021226211626.GD284@Bagpuss.unfortu.net> p4raw-id: //depot/perl@18456
* Re: [perl #19061] 'goto' confuses 'redo'Stephen McCamant2003-01-031-5/+9
| | | | | Message-ID: <15878.32383.94274.950128@syllepsis.MIT.EDU> p4raw-id: //depot/perl@18411
* Re: [perl #19017] lexical "my" variables not visible in debugger "x" commandDave Mitchell2002-12-161-6/+25
| | | | | | | | | Date: Thu, 12 Dec 2002 23:42:35 +0000 Message-ID: <20021212234235.A29245@fdgroup.com> and Date: Sat, 14 Dec 2002 19:16:38 +0000 Message-ID: <20021214191638.A3992@fdgroup.com> p4raw-id: //depot/perl@18307
* Proper fix for CvOUTSIDE weak refcountingDave Mitchell2002-12-141-1/+1
| | | | | Message-ID: <20021210012644.A7843@fdgroup.com> p4raw-id: //depot/perl@18302
* Re: [perl #18165] "0" fails as right-hand argument to ..Slaven Rezic2002-12-081-2/+2
| | | | | Message-ID: <8765ugnffq.fsf@vran.herceg.de> p4raw-id: //depot/perl@18264
* allow evals to see the full lexical scopeDave Mitchell2002-12-021-24/+55
| | | | | Message-ID: <20021124221906.A25386@fdgroup.com> p4raw-id: //depot/perl@18220
* Re: [perl #18479] Error when no strict refs in effectSlaven Rezic2002-11-251-0/+6
| | | | | Message-ID: <87smxya6pf.fsf@vran.herceg.de> p4raw-id: //depot/perl@18176
* Re: [perl #18114] [no subject] BUG: "-4\n".."0\n" is not DWIMAbhijit Menon-Sen2002-10-301-2/+1
| | | | | | | | | | | | | | | | but "-4\n".."-0\n" is! From: Slaven Rezic <slaven.rezic@berlin.de> Date: 30 Oct 2002 16:22:36 +0100 Message-Id: <87n0ow0x4z.fsf@vran.herceg.de> Subject: RE: [perl #18114] [no subject] [TEST PATCH]BUG: "-4\n".."0\n" is not DWIM but "-4\n".."-0\n" is! From: "Orton, Yves" <yves.orton@mciworldcom.de> Date: Wed, 30 Oct 2002 11:59:31 -0000 Message-Id: <71B318898201D311845C0008C75DAD1C07B78BF7@defra1ex2> (Applied over previous fix.) p4raw-id: //depot/perl@18074
* [perl #18165] "0" fails as right-hand argument to ..Mark-Jason Dominus2002-10-301-1/+6
| | | | | | | | From: Mark-Jason Dominus (via RT) <perlbug@perl.org> Message-Id: <rt-18165-40816.6.86096008382222@bugs6.perl.org> (Fixed by making an exception for .."0" in pp_flop.) p4raw-id: //depot/perl@18073
* PL_curpad == AvARRAY(PL_comppad) alwaysDave Mitchell2002-10-221-2/+3
| | | | | Message-ID: <20021018133640.A19172@fdgroup.com> p4raw-id: //depot/perl@18048
* Happy chainsaw stories; The removal of the 5005 threadsH.Merijn Brand2002-10-191-68/+2
| | | | | Still imcomplete. Configure will follow p4raw-id: //depot/perl@18030
* Fix bug #17771 : segfault with the 'for' statement modifierRafael Garcia-Suarez2002-10-111-1/+1
| | | | | used inside a map or a grep. p4raw-id: //depot/perl@17998
* move all pad-related code to its own src fileDave Mitchell2002-10-021-85/+16
| | | | | Message-ID: <20020925234023.A20044@fdgroup.com> p4raw-id: //depot/perl@17953
* enable -ansi -pedanticJarkko Hietaniemi2002-09-261-1/+1
| | | | | Message-ID: <20020917221925.GF85044@lyta.hut.fi> p4raw-id: //depot/perl@17925
* Defined-or patch (cleaned up)Brent Dax2002-08-051-1/+34
| | | | | | From: "Brent Dax" <brentdax@cpan.org> Message-id: <000001c234a1$d1ca72c0$6501a8c0@deepblue> p4raw-id: //depot/perl@17682
* This is getting pretty fragmented (finish up #17441).Jarkko Hietaniemi2002-07-091-1/+1
| | | p4raw-id: //depot/perl@17443