Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add missing SVfARG()s in require_tie_mod(). | Marcus Holland-Moritz | 2007-01-18 | 1 | -2/+2 |
| | | | p4raw-id: //depot/perl@29875 | ||||
* | Given that we now do the tests in S_visit() to avoid calling the | Nicholas Clark | 2007-01-18 | 1 | -2/+4 |
| | | | | | | helper function when skippable, no need to retain those tests inside the helper functions do_clean_objs() and do_clean_named_objs(). p4raw-id: //depot/perl@29872 | ||||
* | perl rebuilds because of gcc's -g flag | Marcus Holland-Moritz | 2007-01-18 | 1 | -0/+1 |
| | | | | | | Subject: [PATCH] Re: [perl #41058] make rebuilds perl everytime Message-ID: <20070118142755.28e7f724@r2d2> p4raw-id: //depot/perl@29871 | ||||
* | Re: [PATCH] win32_async_check() can still loop indefinitely | Jan Dubois | 2007-01-18 | 1 | -1/+1 |
| | | | | | Message-ID: <rigoq25vda3sg4i7ppdb5o2jhvuiq15kqj@4ax.com> p4raw-id: //depot/perl@29868 | ||||
* | As PVLVs can hold globs in some cases, I think that we should be | Nicholas Clark | 2007-01-18 | 1 | -10/+5 |
| | | | | | | treating them as a strict subclass of PVGV. Hence drop through into the PVGV handling code. p4raw-id: //depot/perl@29867 | ||||
* | disable parser stack cleanup on reduce croak (too fragile) | Dave Mitchell | 2007-01-18 | 1 | -1/+17 |
| | | | p4raw-id: //depot/perl@29866 | ||||
* | Fix a typo in Dynaloader_pm.PL. | Marcus Holland-Moritz | 2007-01-17 | 1 | -1/+1 |
| | | | p4raw-id: //depot/perl@29857 | ||||
* | Replace SvRELEASE_IVX(dstr) with SvOOK_off(dstr) in sv_setsv_flags(), | Nicholas Clark | 2007-01-17 | 1 | -1/+1 |
| | | | | | | because it's not possible for dstr to be COW at this point, due to an earlier force_normal. p4raw-id: //depot/perl@29855 | ||||
* | Make PERL_OLD_COPY_ON_WRITE build again. Inline Perl_sv_release_IVX(). | Nicholas Clark | 2007-01-17 | 7 | -45/+24 |
| | | | | | (Currently it fails ext/Compress/Raw/Zlib/t/07bufsize.t) p4raw-id: //depot/perl@29853 | ||||
* | If we use SvUPGRADE() rather than sv_upgrade() then it can make the | Nicholas Clark | 2007-01-17 | 1 | -3/+2 |
| | | | | | | decision on not "up"grading PVLV to PVGV for us. However, it appears that the other actions conducted for "not-yet-a-glob" are useful here. p4raw-id: //depot/perl@29852 | ||||
* | Re: [PATCH] symbian/xsbuild.pl patching continues | Jarkko Hietaniemi | 2007-01-17 | 1 | -0/+6 |
| | | | | | Message-ID: <45AE2427.7080907@iki.fi> p4raw-id: //depot/perl@29848 | ||||
* | Reentrant functions appear to still be broken in NetBSD 3.1. | Steve Peters | 2007-01-16 | 1 | -1/+1 |
| | | | p4raw-id: //depot/perl@29845 | ||||
* | Re: Dual-lived AutoLoader | Steffen Müller | 2007-01-16 | 1 | -0/+8 |
| | | | | | Message-ID: <45ACE158.4080102@sneakemail.com> p4raw-id: //depot/perl@29844 | ||||
* | Re: [PATCH] Change implementation of %+ to use a proper tied hash interface ↵ | Yves Orton | 2007-01-16 | 1 | -4/+4 |
| | | | | | | | and add support for %- Message-ID: <9b18b3110701151406p7168b20byf873ee2e58091ca3@mail.gmail.com> p4raw-id: //depot/perl@29843 | ||||
* | Make offsets support conditional | Yves Orton | 2007-01-16 | 3 | -30/+79 |
| | | | | | Message-ID: <9b18b3110701140624v452f7684x5e9d2890805489fd@mail.gmail.com> p4raw-id: //depot/perl@29842 | ||||
* | Typo fix, by Robin Barker | Rafael Garcia-Suarez | 2007-01-16 | 1 | -1/+1 |
| | | | p4raw-id: //depot/perl@29841 | ||||
* | make Dump display the SVf_BREAK flag | Dave Mitchell | 2007-01-15 | 1 | -0/+1 |
| | | | p4raw-id: //depot/perl@29839 | ||||
* | Enable the ~~ operator by default. | Rafael Garcia-Suarez | 2007-01-15 | 5 | -62/+4 |
| | | | | | Remove the ~~ feature. p4raw-id: //depot/perl@29838 | ||||
* | when cloning PL_regex_pad, copy SVf_BREAK flag too | Dave Mitchell | 2007-01-15 | 1 | -0/+2 |
| | | | p4raw-id: //depot/perl@29837 | ||||
* | pp_rv2av and pp_rv2hv have a lot of common code, so it's certainly a | Nicholas Clark | 2007-01-15 | 5 | -131/+54 |
| | | | | | space saving to merge them. Hopefully this will reduce L2 cache misses. p4raw-id: //depot/perl@29836 | ||||
* | Make changes analagous to pp_rv2hv's 21394 and 24489 in pp_rv2av. | Nicholas Clark | 2007-01-15 | 1 | -12/+12 |
| | | | p4raw-id: //depot/perl@29835 | ||||
* | Re: [PATCH] Add support for /k modfier for matching along with ${^PREMATCH}, ↵ | Yves Orton | 2007-01-15 | 4 | -15/+43 |
| | | | | | | | | | ${^MATCH}, ${^POSTMATCH} Message-ID: <9b18b3110701130818h6badbd3o1b38f2660d258173@mail.gmail.com> macroize regexp modifiers p4raw-id: //depot/perl@29834 | ||||
* | Add support for /k modfier for matching along with ${^PREMATCH}, ${^MATCH}, ↵ | Yves Orton | 2007-01-15 | 15 | -139/+281 |
| | | | | | | | | ${^POSTMATCH} Message-ID: <9b18b3110701111731x29b1c63i57b1698f769b3bbc@mail.gmail.com> (with tweaks) p4raw-id: //depot/perl@29831 | ||||
* | Add get_cvn_flags(), which is like get_cv() but takes a length. This | Nicholas Clark | 2007-01-15 | 12 | -26/+65 |
| | | | | | allows symbolic code references with embeded NULs to work. p4raw-id: //depot/perl@29830 | ||||
* | symbian/xsbuild.pl | Jarkko Hietaniemi | 2007-01-15 | 1 | -17/+54 |
| | | | | | Message-ID: <45AB8684.70906@iki.fi> p4raw-id: //depot/perl@29829 | ||||
* | extend threads 'veto cleanup' to perl_free and system stuff | Dave Mitchell | 2007-01-15 | 5 | -2/+20 |
| | | | p4raw-id: //depot/perl@29827 | ||||
* | Proper symbian fix (replacing change #29813) by Jarkko | Rafael Garcia-Suarez | 2007-01-15 | 1 | -1/+1 |
| | | | | | p4raw-link: @29813 on //depot/perl: 7b82c93812e18a92e98b364b3e820e455a5a1358 p4raw-id: //depot/perl@29826 | ||||
* | Use the $Is_MacOS variable | Rafael Garcia-Suarez | 2007-01-15 | 1 | -3/+3 |
| | | | p4raw-id: //depot/perl@29825 | ||||
* | Simplify the ok/not ok logic | Rafael Garcia-Suarez | 2007-01-15 | 1 | -9/+13 |
| | | | | | (another refactorisation by Schwern) p4raw-id: //depot/perl@29824 | ||||
* | Various cleanup and factorization by Schwern | Rafael Garcia-Suarez | 2007-01-15 | 1 | -16/+23 |
| | | | | | for tests for warnings and features p4raw-id: //depot/perl@29823 | ||||
* | Introduce the :5.10.0 feature bundle, and make :5.10 an | Rafael Garcia-Suarez | 2007-01-15 | 1 | -5/+11 |
| | | | | | alias to it (aimed at be an alias to the latest :5.10.X) p4raw-id: //depot/perl@29822 | ||||
* | Fix link to perlsyn (thanks to Michael G Schwern) | Rafael Garcia-Suarez | 2007-01-15 | 1 | -1/+1 |
| | | | p4raw-id: //depot/perl@29821 | ||||
* | Remove the "dor" feature alias. | Rafael Garcia-Suarez | 2007-01-15 | 1 | -5/+0 |
| | | | p4raw-id: //depot/perl@29820 | ||||
* | Document "no feature" (Michael G Schwern) | Rafael Garcia-Suarez | 2007-01-15 | 1 | -1/+16 |
| | | | p4raw-id: //depot/perl@29819 | ||||
* | Move the documentation of the lexical effect of feature.pm to its own | Rafael Garcia-Suarez | 2007-01-15 | 1 | -5/+17 |
| | | | | | | section thus removing a lot of redundant redundant documentation about it cluttering up the feature documentation. (by Michael G Schwern) p4raw-id: //depot/perl@29818 | ||||
* | Remove obsolete notes and TODOs from feature.pm | Rafael Garcia-Suarez | 2007-01-15 | 1 | -12/+1 |
| | | | p4raw-id: //depot/perl@29817 | ||||
* | Add a reference to the docs for state() variables in feature.pm | Rafael Garcia-Suarez | 2007-01-15 | 1 | -0/+2 |
| | | | | | (suggested by Michael G Schwern) p4raw-id: //depot/perl@29816 | ||||
* | Factorise croak() calls and error messages in feature.pm | Rafael Garcia-Suarez | 2007-01-15 | 1 | -18/+21 |
| | | | | | (suggested by Michael G Schwern) p4raw-id: //depot/perl@29815 | ||||
* | Test that names with embedded NULs work for symbolic array, hash and | Nicholas Clark | 2007-01-15 | 1 | -3/+44 |
| | | | | | typeglob references. p4raw-id: //depot/perl@29814 | ||||
* | Revert perl.h part of change 29811, which breaks compilation with gcc | Rafael Garcia-Suarez | 2007-01-15 | 1 | -1/+1 |
| | | | p4raw-id: //depot/perl@29813 | ||||
* | g++ fixes | Jarkko Hietaniemi | 2007-01-15 | 2 | -3/+5 |
| | | | | | Message-Id: <20070115040930.8685843A67@anubis.hut.fi> p4raw-id: //depot/perl@29812 | ||||
* | Symbian/S90 further fixes | Jarkko Hietaniemi | 2007-01-15 | 3 | -2/+6 |
| | | | | | Message-Id: <20070115041152.374AB43A67@anubis.hut.fi> p4raw-id: //depot/perl@29811 | ||||
* | make S_ithread_run() call S_ithread_free() in main context | Dave Mitchell | 2007-01-14 | 1 | -4/+6 |
| | | | | | | | Fixes a race condition between detach clearing a thread's interpreter, and S_ithread_run() freeing itself while assuming that it's own interpreter still exists. p4raw-id: //depot/perl@29810 | ||||
* | further refinement to #29796 (cleanup veto) | Dave Mitchell | 2007-01-14 | 1 | -6/+14 |
| | | | p4raw-id: //depot/perl@29805 | ||||
* | Re: Memory...growing, and growing | Marvin Humphrey | 2007-01-14 | 1 | -0/+4 |
| | | | | | | | Message-Id: <3CCCF699-345E-4C65-BCCB-1549EB99547A@rectangular.com> Document -DDL_UNLOAD_ALL_AT_EXIT p4raw-id: //depot/perl@29803 | ||||
* | unfreed threads should trigger cleanup veto | Dave Mitchell | 2007-01-13 | 1 | -3/+11 |
| | | | | | | | The thread pool struct is allocated in the main interpreter, so don't clean that up if any threads remain, regardless of what state they are in p4raw-id: //depot/perl@29796 | ||||
* | In S_hfreeentries, orig_array can be const. | Nicholas Clark | 2007-01-13 | 1 | -3/+2 |
| | | | p4raw-id: //depot/perl@29790 | ||||
* | TODO: yada yada yada | Rafael Garcia-Suarez | 2007-01-13 | 1 | -0/+10 |
| | | | p4raw-id: //depot/perl@29786 | ||||
* | Re: AW: umask handling in File::Temp | Gisle Aas | 2007-01-13 | 1 | -2/+6 |
| | | | | | Message-ID: <877ivs1dt3.fsf@ask.g.aas.no> p4raw-id: //depot/perl@29784 | ||||
* | perlthrtut.pod (based on perl-current@29766) | Wolfgang Laun | 2007-01-13 | 1 | -8/+11 |
| | | | | | Message-ID: <45A7B966.1040307@thalesgroup.com> p4raw-id: //depot/perl@29781 |