summaryrefslogtreecommitdiff
path: root/pp_hot.c
Commit message (Collapse)AuthorAgeFilesLines
* Retract #19064, broke mod_perl flushing (localisation of $|).Jarkko Hietaniemi2003-08-211-6/+6
| | | | | | 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
* fix $^N-related coredumpAnton Berezin2003-07-171-1/+1
| | | | | Message-ID: <20030714115035.GA10971@heechee.tobez.org> p4raw-id: //depot/perl@20163
* Remove the deprecated $* variable.Rafael Garcia-Suarez2003-06-131-2/+2
| | | | | | | Incidentally, this fixes bug #22354, about unwanted action-at-distance of the /m regexp modifier. Add a new warning to advertise this fact. p4raw-id: //depot/perl@19769
* Re: Bug stomping fun. [PATCH: bug #1016]Alex Vandiver2003-05-121-1/+5
| | | | | | Message-Id: <1051872303.26203.104.camel@supox> (plus perldiag nit) p4raw-id: //depot/perl@19505
* Suppress a few compilation warnings in pp_hot.c.Rafael Garcia-Suarez2003-05-081-3/+2
| | | p4raw-id: //depot/perl@19454
* Re: [perl #17718] %tiedhash in bool context doesn't check if hash is emptyYitzchak Scott-Thoennes2003-05-081-1/+2
| | | | | Message-ID: <7gYu+gzkgaFU092yn@efn.org> p4raw-id: //depot/perl@19452
* RE: perl@19333Robin Barker2003-05-011-2/+2
| | | | | Message-ID: <533D273D4014D411AB1D00062938C4D9040464F7@hotel.npl.co.uk> p4raw-id: //depot/perl@19373
* Fix bug #15161 by increasing the refcount on the RE and making Artur Bergman2003-04-261-0/+1
| | | | | sure to restore it correctly. Deals with both s//e and s///g. p4raw-id: //depot/perl@19342
* A new fatal error :Dave Mitchell2003-04-231-0/+6
| | | | | | | Subject: [PATCH] Perl_croak("Use of freed value in iteration") Message-ID: <20030421121950.GB18189@fdgroup.com> Message-ID: <20030421125433.GC18189@fdgroup.com> p4raw-id: //depot/perl@19316
* 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
* Fixes to bugs introduced by PL_stashcacheArtur Bergman2003-04-141-6/+6
| | | | | | | | | | | A) Follow suggestion by Benjamin Goldberg to use hv_delete instead of hv_delete_ent to avoid creating a temporary SV B) Don't increment the refcount, sneak it into an IV instead C) When a GP is a deleted that contains a stash, remove the corresponding entry since hv might be in use in other places. D) Note that no test cases test the deletion of packages to catch this bug. p4raw-id: //depot/perl@19212
* Fix some small nits, thanks to Rafael.Artur Bergman2003-04-021-3/+3
| | | p4raw-id: //depot/perl@19134
* Add packname->stash cache before the check if a packname is aArtur Bergman2003-04-021-0/+14
| | | | | | | | | filehandle or a package, it works because only packnames that have been resolved to stashes are added to the cache, and when a newIO is created we clean the cache. Results in roughly 1.8 speed increase for class->method() calls. p4raw-id: //depot/perl@19133
* Better version of change #19069Nicholas Clark2003-03-261-1/+1
| | | | | | | Subject: [PATCH] Re: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount Message-ID: <20030326230145.GC279@Bagpuss.unfortu.net> p4raw-link: @19069 on //depot/perl: 10bcdfd6e8d70ea5a2c02616001cf97fce7f3e17 p4raw-id: //depot/perl@19071
* [PATCH] Re: [perl #21542] local $_ [0] = $_ [0] fails.Dave Mitchell2003-03-261-6/+6
| | | | | | | | | | | 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
* Re: [patch] [perl #21628] rcatline issueAdrian M. Enache2003-03-201-4/+8
| | | | | Message-ID: <20030320203906.GA31199@ratsnest.hole> p4raw-id: //depot/perl@19039
* Update all copyrights to 2003, from JarkkoHugo van der Sanden2003-03-021-1/+1
| | | p4raw-id: //depot/perl@18801
* Re: [perl #21321] local ${"FOO"} does not workRafael Garcia-Suarez2003-02-251-0/+6
| | | | | Message-Id: <20030223000327.6f0c11fa.rgarciasuarez@free.fr> p4raw-id: //depot/perl@18774
* Patching magic from Inaba-san's keyboard: fix for [perl #8769]:Jarkko Hietaniemi2003-02-241-10/+14
| | | | | | "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
* add support for assertions. Updated form of:Salvador Fandiño2003-02-161-0/+3
| | | | | | Subject: Re: Did the assertion patch/feature submission get overlooked? Message-ID: <3DE8F439.50402@yahoo.com> p4raw-id: //depot/perl@18727
* COW regexps:Nicholas Clark2003-02-161-8/+64
| | | | | | Subject: [PATCH] Copy on write for $& and $1... Message-ID: <20030209230008.GF299@Bagpuss.unfortu.net> p4raw-id: //depot/perl@18726
* Move SvPVIV out of ->op_sv of METHOD_NAMED into the pad, fixesArtur Bergman2003-02-021-1/+1
| | | | | | threading issue. Should perhaps be a PVOP to save memory, but then we have nowhere to store the hash of the function! p4raw-id: //depot/perl@18640
* [perl #18232] [PATCH] store PL_reg_match_utf8 in reganchRafael Garcia-Suarez2003-02-021-4/+4
| | | | | Message-Id: <20030122223556.57d597a3.rgarciasuarez@free.fr> p4raw-id: //depot/perl@18633
* [perl #20408] SV's SvPVX get freed even when its SvLEN is zeroAdrian M. Enache2003-01-201-1/+2
| | | | | | From: "enache@rdslink.ro (via RT)" <perlbug-followup@perl.org> Message-Id: <rt-20408-49009.18.2567818321236@bugs6.perl.org> p4raw-id: //depot/perl@18522
* Re: [perl #19566] Perl 5.8.0 segfaultStephen McCamant2003-01-151-0/+3
| | | | | | | | | | | | | Message-ID: <15892.50791.692636.982873@syllepsis.MIT.EDU> Plus a test by Jarkko Integrated from changes 18444 and 18446 from maint-5.8 p4raw-id: //depot/perl@18485 p4raw-branched: from //depot/maint-5.8/perl@18484 'branch in' t/op/readline.t p4raw-integrated: from //depot/maint-5.8/perl@18446 'merge in' MANIFEST (@18436..) p4raw-integrated: from //depot/maint-5.8/perl@18444 'merge in' pp_hot.c (@18173..)
* %_ (was Re: [PATCH] operation on `PL_na' may be undefined)Nicholas Clark2003-01-071-4/+4
| | | | | Message-ID: <20021226211626.GD284@Bagpuss.unfortu.net> p4raw-id: //depot/perl@18456
* 2% speedup (pp_entersub needs to go on a diet)Nicholas Clark2002-12-231-102/+113
| | | | | Message-ID: <20021210185527.GG288@Bagpuss.unfortu.net> p4raw-id: //depot/perl@18340
* allow evals to see the full lexical scopeDave Mitchell2002-12-021-2/+2
| | | | | Message-ID: <20021124221906.A25386@fdgroup.com> p4raw-id: //depot/perl@18220
* Re: [perl #18113] UNIVERSAL::AUTOLOAD doesn't work if the stash doesn't ↵Gurusamy Sarathy2002-11-191-1/+4
| | | | | | | | | | | | exist yet Date: Wed, 30 Oct 2002 20:58:15 -0800 Message-Id: <200210310458.g9V4wFK00513@smtp3.ActiveState.com> Date: Wed, 30 Oct 2002 21:56:22 -0800 Message-Id: <200210310556.g9V5uMK05748@smtp3.ActiveState.com> Date: Wed, 30 Oct 2002 22:55:30 -0800 Message-Id: <200210310655.g9V6tUK10959@smtp3.ActiveState.com> p4raw-id: //depot/perl@18159
* Re: [perl #17605] strange behaviour (difference between perl 5.6 and perl ↵Hugo van der Sanden2002-11-071-2/+3
| | | | | | | 5.8.0) in the regexp Message-Id: <200211031641.gA3GfOm08609@crypt.compulink.co.uk> p4raw-id: //depot/perl@18118
* Happy chainsaw stories; The removal of the 5005 threadsH.Merijn Brand2002-10-191-183/+1
| | | | | Still imcomplete. Configure will follow p4raw-id: //depot/perl@18030
* Re: [perl #17376] Bug Report - our(%)Yitzchak Scott-Thoennes2002-10-021-1/+1
| | | | | Message-ID: <GNdm9gzkgWOS092yn@efn.org> p4raw-id: //depot/perl@17963
* move all pad-related code to its own src fileDave Mitchell2002-10-021-52/+10
| | | | | Message-ID: <20020925234023.A20044@fdgroup.com> p4raw-id: //depot/perl@17953
* enable -ansi -pedanticJarkko Hietaniemi2002-09-261-2/+2
| | | | | Message-ID: <20020917221925.GF85044@lyta.hut.fi> p4raw-id: //depot/perl@17925
* Fix #17375 (rcatline didn't work on a formerly-defined undef) byAbhijit Menon-Sen2002-09-171-3/+7
| | | | | checking for SvOK in do_readline(). p4raw-id: //depot/perl@17910
* Copy On WriteNicholas Clark2002-08-171-2/+6
| | | | | | Message-id: <20020815001035.A69079@plum.flirble.org> specify "-Accflags='-DPERL_COPY_ON_WRITE'" to use p4raw-id: //depot/perl@17728
* Remove pseudo-hashes (complete)Michael G. Schwern2002-08-171-88/+15
| | | | | Message-id: <20020806200510.GC31473@ool-18b93024.dyn.optonline.net> p4raw-id: //depot/perl@17725
* Re: [ID 20020713.001] chomp($data=<tied_fh>) strangeness.Hugo van der Sanden2002-08-121-2/+5
| | | | | Message-id: <200207131644.g6DGi2214456@crypt.compulink.co.uk> p4raw-id: //depot/perl@17716
* Defined-or patch (cleaned up)Brent Dax2002-08-051-0/+36
| | | | | | From: "Brent Dax" <brentdax@cpan.org> Message-id: <000001c234a1$d1ca72c0$6501a8c0@deepblue> p4raw-id: //depot/perl@17682
* Further tweaking on the Unicode s///.Jarkko Hietaniemi2002-06-261-3/+7
| | | p4raw-id: //depot/perl@17366
* Let's not leak.Jarkko Hietaniemi2002-06-261-1/+1
| | | p4raw-id: //depot/perl@17362
* Another Unicode s/// buglet, from SADAHIRO Tomoyuki.Jarkko Hietaniemi2002-06-261-0/+9
| | | p4raw-id: //depot/perl@17358
* Unicode s/// buglet found by Gregor Chrupala in perl-unicode.Jarkko Hietaniemi2002-06-251-0/+2
| | | p4raw-id: //depot/perl@17353
* Re: [PATCH scope.c] Re: local($tied->{foo}) leaksDave Mitchell2002-05-071-20/+2
| | | | | Message-ID: <20020508001102.D4118@fdgroup.com> p4raw-id: //depot/perl@16456
* correctly unlocalise exists on tied/%ENV Dave Mitchell2002-05-071-5/+17
| | | | | Message-ID: <20020507231310.B4118@fdgroup.com> p4raw-id: //depot/perl@16455
* [proposed PATCH] correctly unlocalise exists on tied/%ENVDave Mitchell2002-05-061-1/+6
| | | | | Message-ID: <20020504003418.F22026@fdgroup.com> p4raw-id: //depot/perl@16431
* Re: [PATCH scope.c] Re: local($tied->{foo}) leaksDave Mitchell2002-05-041-2/+20
| | | | | Message-ID: <20020503235110.E22026@fdgroup.com> p4raw-id: //depot/perl@16386
* New UTF-8 surpriseAndreas König2002-04-241-1/+8
| | | | | Message-ID: <m38z7gjb9r.fsf@anima.de> p4raw-id: //depot/perl@16124
* fixes for all the warnings reported by Visual C (most of thisGurusamy Sarathy2002-04-211-3/+3
| | | | | | change is from change#12026) p4raw-link: @12026 on //depot/maint-5.6/perl: ff42b73b40f5a895aef4bed81c794f468e0609bc p4raw-id: //depot/perl@16048
* Re: [ID 20020412.005] Dancing ??sHugo van der Sanden2002-04-151-8/+12
| | | | | Message-Id: <200204141509.g3EF9UQ18111@crypt.compulink.co.uk> p4raw-id: //depot/perl@15936