| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix the regexp in t/porting/args_assert.t, and add 3 missing macros. | Nicholas Clark | 2010-05-29 | 3 | -2/+7 |
* | Properly free paren_name_list with its regexp. | Nicholas Clark | 2010-05-29 | 2 | -2/+5 |
* | Clarify that count is bytes not unicode characters | Karl Williamson | 2010-05-29 | 1 | -1/+1 |
* | Display characters as Unicode for clarity | Karl Williamson | 2010-05-29 | 1 | -0/+1 |
* | Add tested for corrupted regnode | Karl Williamson | 2010-05-29 | 1 | -0/+4 |
* | Use sizeof instead of hard-coded array size | Karl Williamson | 2010-05-29 | 1 | -1/+1 |
* | Typo | Karl Williamson | 2010-05-29 | 1 | -1/+1 |
* | When assigning to $^P, don't zero $DB::single, $DB::trace and $DB::signal. | Nicholas Clark | 2010-05-29 | 2 | -4/+20 |
* | Migrate most other op_private to name conversion into S_op_private_to_names(). | Nicholas Clark | 2010-05-28 | 1 | -57/+38 |
* | In Perl_do_op_dump(), move calls to append_flags() into S_op_private_to_names() | Nicholas Clark | 2010-05-28 | 1 | -12/+34 |
* | Add C_ARRAY_END(), returning a pointer to after the last element of an array. | Nicholas Clark | 2010-05-28 | 2 | -1/+2 |
* | In Perl_do_op_dump(), reorder the ops within the if (o->op_private) clause. | Nicholas Clark | 2010-05-28 | 1 | -29/+29 |
* | In Perl_do_sv_dump(), use append_flags() for PVCV, PVFM and PVGP flags. | Nicholas Clark | 2010-05-28 | 1 | -22/+38 |
* | In Perl_do_sv_dump(), for PVCV and PVFM, test for SvCOMPILED(sv) last. | Nicholas Clark | 2010-05-28 | 1 | -1/+1 |
* | In Perl_do_op_dump(), move runs of op_private name tests to S_append_flags(). | Nicholas Clark | 2010-05-28 | 1 | -47/+44 |
* | Create S_append_flags() from a common code pattern in dump.c. | Nicholas Clark | 2010-05-28 | 1 | -44/+64 |
* | InPerl_boot_core_UNIVERSAL() use a data structure for calls to newXS{,proto} | Nicholas Clark | 2010-05-28 | 1 | -118/+81 |
* | Naif calls segfault T_PRTOBJ of the stock typemap | Salvador Ortiz Garcia | 2010-05-28 | 1 | -1/+1 |
* | Add simple_bitmask and varies_bitmask to globvar.sym. | Nicholas Clark | 2010-05-28 | 1 | -0/+2 |
* | Convert REGNODE_{SIMPLE,VARIES} to a bitmask lookup, from a strchr() lookup. | Nicholas Clark | 2010-05-27 | 2 | -10/+50 |
* | Change regcomp.pl to 0-based indexing for its arrays and loops. | Nicholas Clark | 2010-05-27 | 1 | -21/+20 |
* | Encapsulate lookups in PL_{varies,simple} within macros REGNODE_{VARIES,SIMPLE} | Nicholas Clark | 2010-05-27 | 3 | -4/+10 |
* | Generate PL_simple[] and PL_varies[] with regcomp.pl, rather than hard-coding. | Nicholas Clark | 2010-05-27 | 4 | -77/+104 |
* | Re-work the regcomp.sym to remove use of hard tabs. No data change. | Nicholas Clark | 2010-05-27 | 2 | -121/+121 |
* | Correct the node numbers in comments. | Nicholas Clark | 2010-05-27 | 1 | -4/+4 |
* | Remove stray tab character in definition for VERB. | Nicholas Clark | 2010-05-27 | 2 | -3/+3 |
* | Fix clang "incompatible operand types" error in ternary expressions. | George Greer | 2010-05-27 | 1 | -1/+1 |
* | PATCH: user defined special casing for non utf8 | Karl Williamson | 2010-05-26 | 2 | -3/+9 |
* | Change a few tests to use new test.pl EBCDIC stuff | Karl Williamson | 2010-05-25 | 4 | -34/+6 |
* | Add functions to test.pl for easier EBCDIC testing | Karl Williamson | 2010-05-25 | 1 | -1/+126 |
* | Fix CLONE/weakref bug revealed by adf8f095c5881bce. | Nicholas Clark | 2010-05-25 | 2 | -8/+94 |
* | Update rsync sources in perlhack | H.Merijn Brand | 2010-05-25 | 1 | -6/+11 |
* | Add the perl equivalent for av_make. | Shlomi Fish | 2010-05-25 | 1 | -0/+2 |
* | Add the Perl equivalent for av_len. | Shlomi Fish | 2010-05-25 | 1 | -0/+2 |
* | Add a missing comma in the av_fill() docs. | Shlomi Fish | 2010-05-25 | 1 | -1/+1 |
* | Clarify the av_fetch() documentation. | Shlomi Fish | 2010-05-25 | 1 | -2/+4 |
* | Add Perl equivalent for av_exists(). | Shlomi Fish | 2010-05-25 | 1 | -0/+2 |
* | Add a Perl equivalent to av_delete(). | Shlomi Fish | 2010-05-25 | 1 | -1/+3 |
* | Add the Perl equivalent example to av_clear. | Shlomi Fish | 2010-05-25 | 1 | -1/+1 |
* | Link from GIMME_V to perlcall for a usage example. | Shlomi Fish | 2010-05-25 | 1 | -1/+1 |
* | PATCH: correct misstatement, formats in perlunicode | Karl Williamson | 2010-05-25 | 1 | -10/+11 |
* | Fix for typo in 0824d66743a706cd, in the expected output with threads. | Nicholas Clark | 2010-05-25 | 1 | -1/+1 |
* | add OPpDEREFed flag to avoid double mg_get() | David Mitchell | 2010-05-25 | 7 | -4/+28 |
* | Deref ops ignore get-magic when SvROK(sv) | Father Chrysostomos (via RT) | 2010-05-25 | 3 | -17/+15 |
* | Just the tests from a proposed fix for 68192 | Father Chrysostomos | 2010-05-25 | 1 | -0/+95 |
* | Replace wrong tr/// table in perlebcdic.pod | Karl Williamson | 2010-05-25 | 1 | -45/+61 |
* | Remove unused, wrong #define in utf8.h | Karl Williamson | 2010-05-25 | 1 | -2/+0 |
* | Fix build warnings introduced by v5.13.0-139-ge0fa7e2 | Jerry D. Hedden | 2010-05-24 | 1 | -1/+2 |
* | Add Perl_clone_params_{del,new} and Perl_sv_dup to the "no threads" exclusions. | Nicholas Clark | 2010-05-24 | 1 | -0/+3 |
* | Set PADSTALE on all lexicals at the end of sub creation. | Nicholas Clark | 2010-05-24 | 2 | -3/+44 |