| Commit message (Expand) | Author | Age | Files | Lines |
* | For shorter strings, store C<study>'s data as U8s or U16s, instead of U32s. | Nicholas Clark | 2011-07-01 | 1 | -4/+53 |
* | Store C<study>'s data in in mg_ptr instead of interpreter variables. | Nicholas Clark | 2011-07-01 | 1 | -12/+24 |
* | Split out study magic from pos magic. | Nicholas Clark | 2011-07-01 | 1 | -4/+4 |
* | attributes.pm: warn & don’t apply :lvalue to defined subs | Father Chrysostomos | 2011-06-22 | 2 | -0/+13 |
* | Increase $attributes::version to 0.15 | Father Chrysostomos | 2011-06-22 | 1 | -1/+1 |
* | Merge ext/IPC-Open2 into ext/IPC-Open3. | Nicholas Clark | 2011-06-16 | 2 | -0/+0 |
* | Add PERL_NO_GET_CONTEXT to ODBM_File | Nicholas Clark | 2011-06-16 | 2 | -1/+3 |
* | Move an XS::APItest var decl to PREINIT | Father Chrysostomos | 2011-06-12 | 1 | -1/+2 |
* | Completely free hashes containing nulls | Father Chrysostomos | 2011-06-12 | 2 | -0/+35 |
* | Fix two broken URLs in mro.pm, bump version and document in perldelta | Leon Brocard | 2011-06-12 | 2 | -11/+4 |
* | Reorder ops so that trans{,r} and aelemfast{,_lex} are adjacent. | Nicholas Clark | 2011-06-12 | 1 | -1/+1 |
* | Split OP_AELEMFAST_LEX out from OP_AELEMFAST. | Nicholas Clark | 2011-06-12 | 3 | -5/+9 |
* | Remove TODO markers from Devel::Peek tests | Father Chrysostomos | 2011-06-11 | 1 | -5/+18 |
* | Replace references to PL_vtbl_{bm,fm} in the code with PL_vtbl_regexp. | Nicholas Clark | 2011-06-11 | 1 | -2/+2 |
* | Tests for Perl_get_vtbl() | Nicholas Clark | 2011-06-11 | 2 | -0/+49 |
* | Store FBMs in PVMGs, instead of GVs. | Nicholas Clark | 2011-06-11 | 2 | -4/+4 |
* | Store the BM table in mg_ptr instead of after SvCUR(). | Nicholas Clark | 2011-06-11 | 2 | -1/+22 |
* | Abolish xbm_rare. Move BmUSEFUL() to union _xnvu and BmPREVIOUS() to the UV. | Nicholas Clark | 2011-06-11 | 1 | -0/+5 |
* | Use SvTAIL() instead of BmFLAGS(). The core no longer uses BmFLAGS(). | Nicholas Clark | 2011-06-11 | 1 | -2/+0 |
* | Don't fbm_compile() studied scalars, to give more flexibility in SV flag usage. | Nicholas Clark | 2011-06-11 | 1 | -2/+18 |
* | Don't allow study on an FBM scalar, to give more flexibility in SV flag usage. | Nicholas Clark | 2011-06-11 | 1 | -2/+24 |
* | Test dumping studied scalars. | Nicholas Clark | 2011-06-11 | 1 | -1/+29 |
* | Perl_do_sv_dump() shouldn't show "IV" for a FBM, as it's not valid. | Nicholas Clark | 2011-06-11 | 1 | -0/+38 |
* | In IPC::Open3, inline xfork() and xclose_on_exec(), and delete xpipe_anon(). | Nicholas Clark | 2011-06-11 | 1 | -20/+7 |
* | In IPC::Open3::_open(), refactor the DO_SPAWN code to loop over @handles. | Nicholas Clark | 2011-06-11 | 1 | -19/+9 |
* | In IPC::Open3::_open(), refactor the fork/exec code to loop over @handles. | Nicholas Clark | 2011-06-11 | 1 | -21/+10 |
* | In IPC::Open3::_open(), refactor the common code into loops over @handles. | Nicholas Clark | 2011-06-11 | 1 | -18/+20 |
* | In IPC::Open3::_open(), switch from 'r' and 'w' to '<' and '>'. | Nicholas Clark | 2011-06-11 | 1 | -4/+4 |
* | Use $handles[2]{dup_of_out} for the special case code for shared STD{OUT,ERR}. | Nicholas Clark | 2011-06-11 | 1 | -5/+6 |
* | In IPC::Open3::_open3(), move $kid_{rdr,wtr,err} to @handles. | Nicholas Clark | 2011-06-11 | 1 | -29/+26 |
* | In IPC::Open3::_open3(), move $dup_{wtr,rdr,err} to @handles. | Nicholas Clark | 2011-06-11 | 1 | -18/+18 |
* | In IPC::Open3::_open3(), move $dad_{wtr,rdr,err} to @handles. | Nicholas Clark | 2011-06-11 | 1 | -38/+41 |
* | Move the table describing file handles near to the top of IPC::Open::open3(). | Nicholas Clark | 2011-06-11 | 1 | -22/+18 |
* | Move the autovivification emulation code to the top of IPC::Open3::_open3(). | Nicholas Clark | 2011-06-11 | 1 | -7/+8 |
* | Refactor IPC::Open3::_open3() to find the caller's package itself. | Nicholas Clark | 2011-06-11 | 2 | -8/+7 |
* | IPC::Open3::open3() couldn't duplicate numeric file descriptors on Windows. | Nicholas Clark | 2011-06-11 | 2 | -4/+24 |
* | Avoid an uninitialized hash key in IPC::Open::spawn_with_handles(). | Nicholas Clark | 2011-06-11 | 2 | -8/+4 |
* | IPC::Open3::open3() shouldn't fail if any of *STD{IN,OUT,ERR} are localized. | Nicholas Clark | 2011-06-11 | 2 | -5/+32 |
* | Add debug code to test IPC::Open3::spawn_with_handles() on *nix. | Nicholas Clark | 2011-06-11 | 1 | -2/+23 |
* | In IPC::Open3::_open(), use 3 argument open to avoid a special case for STDERR. | Nicholas Clark | 2011-06-11 | 1 | -6/+3 |
* | Generalise IPC::Open3::xopen() to $n-argument open. | Nicholas Clark | 2011-06-11 | 1 | -2/+4 |
* | Simplify the test for IPC::Open bug RT #72016. | Nicholas Clark | 2011-06-11 | 1 | -10/+8 |
* | In B::Concise and op.h list all ops that use LVSUB | Father Chrysostomos | 2011-06-09 | 1 | -1/+2 |
* | Test that IPC::Open{2,3} correctly fault read-only file-handle parameters. | Nicholas Clark | 2011-06-06 | 2 | -2/+10 |
* | Test that IPC::Open{2,3} correctly qualify file handles to their package. | Nicholas Clark | 2011-06-06 | 2 | -2/+26 |
* | In IPC-Open2.t, use functions other than ok(), to generate better diagnostics. | Nicholas Clark | 2011-06-06 | 1 | -8/+6 |
* | In IPC-Open3.t, merge two similar tests using a loop. | Nicholas Clark | 2011-06-06 | 1 | -19/+9 |
* | [perl #92258] <$fh> hangs on a glob copy | Father Chrysostomos | 2011-06-05 | 1 | -3/+10 |
* | Make Devel::Peek::fill_mstats work on COWs | Father Chrysostomos | 2011-06-04 | 2 | -0/+9 |
* | Get PerlIO::scalar to write to COWs | Father Chrysostomos | 2011-06-04 | 3 | -3/+12 |