| Commit message (Expand) | Author | Age | Files | Lines |
* | &CORE::umask() | Father Chrysostomos | 2011-08-29 | 1 | -2/+2 |
* | &CORE::tell() | Father Chrysostomos | 2011-08-29 | 1 | -1/+1 |
* | &CORE::setpgrp() | Father Chrysostomos | 2011-08-29 | 1 | -7/+3 |
* | Make setpgrp($x) equivalent to setpgrp($x,0) | Father Chrysostomos | 2011-08-29 | 1 | -1/+2 |
* | &CORE::sysopen() | Father Chrysostomos | 2011-08-28 | 1 | -1/+1 |
* | &CORE::sleep() | Father Chrysostomos | 2011-08-27 | 1 | -1/+1 |
* | &CORE::mkdir() | Father Chrysostomos | 2011-08-26 | 1 | -1/+1 |
* | &CORE::gmtime() and &CORE::localtime() | Father Chrysostomos | 2011-08-26 | 1 | -1/+1 |
* | &CORE::getpgrp() | Father Chrysostomos | 2011-08-25 | 1 | -1/+2 |
* | &CORE::foo() for close, getc and readline | Father Chrysostomos | 2011-08-25 | 1 | -2/+4 |
* | [rt #84590] try to preserve the inode number, even if it's large | Tony Cook | 2011-08-01 | 1 | -0/+8 |
* | Remove an unused variable | Florian Ragwitz | 2011-07-13 | 1 | -1/+0 |
* | use a flag to signal a stacking filetests instead of peeking at the next op. | Gerard Goossen | 2011-07-11 | 1 | -5/+1 |
* | [perl #8611] tied handles and gotos don't mix | David Mitchell | 2011-06-14 | 1 | -2/+20 |
* | Revert "Revert "Make untie check the FAKE flag on globs"" | Father Chrysostomos | 2011-06-11 | 1 | -1/+1 |
* | Revert "Revert "[perl #77688] tie $scalar can tie a handle"" | Father Chrysostomos | 2011-06-11 | 1 | -1/+1 |
* | Revert "Revert "[perl #77496] tied gets scalars and globs confused"" | Father Chrysostomos | 2011-06-11 | 1 | -1/+1 |
* | Revert ‘Deprecate tie $handle without *’ | Father Chrysostomos | 2011-06-11 | 1 | -18/+2 |
* | Turn $$ into a magical readonly variable that always fetches getpid() instead... | Max Maischein | 2011-05-22 | 1 | -6/+0 |
* | In pp_warn and pp_die, eliminate pv, which is assigned to but never read. | Nicholas Clark | 2011-05-18 | 1 | -4/+2 |
* | [perl #82250] fix tainted (s)print format | David Mitchell | 2011-03-14 | 1 | -2/+0 |
* | [perl #77384] Passing a ref to warn doesn't append file and line | Father Chrysostomos | 2011-03-05 | 1 | -1/+3 |
* | Correct the "unimplemented" message for get{host,net,proto,serv}ent aliases. | Nicholas Clark | 2011-01-10 | 1 | -4/+4 |
* | Merge the implementations of {end,set}{gr,pw}ent with endhostent. | Nicholas Clark | 2011-01-10 | 1 | -44/+28 |
* | Merge the implementations of pp_s{host,net,proto,serv}ent. | Nicholas Clark | 2011-01-10 | 1 | -28/+21 |
* | Merge the implementations of pp_e{host,net,proto,serv}ent. | Nicholas Clark | 2011-01-10 | 1 | -32/+21 |
* | Generate "Unsupported socket function" stubs using PL_ppaddr. | Nicholas Clark | 2011-01-09 | 1 | -35/+10 |
* | Rename pp_send to pp_syswrite, making send an alias for syswrite. | Nicholas Clark | 2011-01-09 | 1 | -1/+1 |
* | Generate pp_* prototypes in pp_proto.h, and remove pp.sym | Nicholas Clark | 2011-01-09 | 1 | -2/+2 |
* | In pp_send, assign to io earlier, and use op_type instead of PL_op->op_type. | Nicholas Clark | 2011-01-08 | 1 | -5/+3 |
* | In pp_send, transpose the blocks for OP_SYSWRITE and OP_SEND | Nicholas Clark | 2011-01-08 | 1 | -19/+17 |
* | Fix typos (spelling errors) in Perl sources. | Peter J. Acklam) (via RT | 2011-01-07 | 1 | -1/+1 |
* | Convert tied PRINT to using Perl_tied_method() | Nicholas Clark | 2011-01-05 | 1 | -0/+6 |
* | Rename tied_handle_method() to tied_method(), and make it non-static. | Nicholas Clark | 2011-01-05 | 1 | -46/+41 |
* | In pp_sys.c, rename the macro tied_handle_method() to tied_handle_method0() | Nicholas Clark | 2011-01-05 | 1 | -4/+4 |
* | The mg parameter to S_tied_handle_method() can be const MG * | Nicholas Clark | 2011-01-05 | 1 | -13/+13 |
* | Split the flags and argc parameters to S_tied_handle_method(). | Nicholas Clark | 2011-01-05 | 1 | -22/+18 |
* | Convert tied WRITE to using S_tied_handle_method() | Nicholas Clark | 2011-01-04 | 1 | -6/+3 |
* | Convert tied READ to using S_tied_handle_method() | Nicholas Clark | 2011-01-04 | 1 | -7/+4 |
* | Convert tied PRINTF to using S_tied_handle_method() | Nicholas Clark | 2011-01-04 | 1 | -7/+3 |
* | Convert tied OPEN to using S_tied_handle_method() | Nicholas Clark | 2011-01-04 | 1 | -8/+8 |
* | In pp_sys.c, move S_tied_handle_method() before pp_open. | Nicholas Clark | 2011-01-04 | 1 | -48/+48 |
* | Remove a long-vestigial PUTBACK from the tied OPEN code in pp_send. | Nicholas Clark | 2011-01-04 | 1 | -1/+0 |
* | Converge the implementation of tied OPEN with PRINTF, READ and WRITE. | Nicholas Clark | 2011-01-04 | 1 | -2/+2 |
* | GvIO(gv) returns NULL for a NULL gv, so refactor to take advantage of this. | Nicholas Clark | 2011-01-02 | 1 | -30/+25 |
* | make <expr> always overload if expr is overloaded | David Mitchell | 2011-01-02 | 1 | -1/+6 |
* | call pp_glob() even when its being skipped | David Mitchell | 2011-01-02 | 1 | -0/+10 |
* | standardise amagic method naming | David Mitchell | 2010-12-31 | 1 | -1/+1 |
* | Merge the opcode bodies for pp_bind and pp_connect. | Nicholas Clark | 2010-12-30 | 1 | -32/+7 |
* | Most socket ops weren't warning for unopened handles unless 'closed' was enabled | Nicholas Clark | 2010-12-30 | 1 | -14/+7 |