| Commit message (Expand) | Author | Age | Files | Lines |
* | Use another method to avoid the "possible interpolation" warning | Rafael Garcia-Suarez | 2007-03-07 | 1 | -1/+5 |
* | Avoid an assertion failure when overloading readpipe. | Nicholas Clark | 2007-03-02 | 1 | -1/+1 |
* | More assertion failures, found by auditing the code. | Nicholas Clark | 2007-03-02 | 1 | -2/+2 |
* | (?p{}) has been deprecated for a long time. | Rafael Garcia-Suarez | 2007-02-28 | 1 | -1/+1 |
* | C<keys %+> should not warn. Don't make scan_ident test for | Rafael Garcia-Suarez | 2007-02-24 | 1 | -1/+2 |
* | More efficient to call newSV_type() then SvGROW() instead of newSV() | Nicholas Clark | 2007-02-18 | 1 | -4/+4 |
* | Add a new API function newSV_type, to replace the idiom: | Nicholas Clark | 2007-02-18 | 1 | -4/+2 |
* | Re: PL_copline inconsistency | Rick Delaney | 2007-02-12 | 1 | -0/+1 |
* | A few more places where we know the length for sv_setpv() or sv_catpv() | Nicholas Clark | 2007-02-02 | 1 | -4/+4 |
* | One last gv_fetchpv() that should be GV_ADD rather than TRUE. | Nicholas Clark | 2007-01-27 | 1 | -1/+1 |
* | A test to exercise the smallbuf overflow code in S_incline, and a | Nicholas Clark | 2007-01-27 | 1 | -12/+28 |
* | Stop S_incline needing to temporarily write a '\0' into its passed-in | Nicholas Clark | 2007-01-26 | 1 | -10/+7 |
* | As we're not passing over (or copying in) a NUL, don't need that extra | Nicholas Clark | 2007-01-26 | 1 | -2/+2 |
* | Convert the last remaining 256 byte "small"bufs to 128 bytes. | Nicholas Clark | 2007-01-25 | 1 | -1/+1 |
* | Neither gv_fetchpvn_flags() nor hv_fetch() need a NUL terminated | Nicholas Clark | 2007-01-25 | 1 | -7/+7 |
* | The last parameter to gv_stashpv/gv_stashpvn/gv_stashsv is a bitmask | Nicholas Clark | 2007-01-25 | 1 | -4/+4 |
* | Enable the ~~ operator by default. | Rafael Garcia-Suarez | 2007-01-15 | 1 | -2/+1 |
* | Re: [PATCH] Add support for /k modfier for matching along with ${^PREMATCH}, ... | Yves Orton | 2007-01-15 | 1 | -8/+9 |
* | Add support for /k modfier for matching along with ${^PREMATCH}, ${^MATCH}, $... | Yves Orton | 2007-01-15 | 1 | -16/+12 |
* | Add get_cvn_flags(), which is like get_cv() but takes a length. This | Nicholas Clark | 2007-01-15 | 1 | -4/+5 |
* | g++ fixes | Jarkko Hietaniemi | 2007-01-15 | 1 | -1/+1 |
* | Fix bug [perl #41234] : the tokenizer understands "=cute" | Rafael Garcia-Suarez | 2007-01-11 | 1 | -1/+1 |
* | In toke.c, merge S_update_debugger_info_pv() and | Nicholas Clark | 2007-01-11 | 1 | -21/+10 |
* | allocate op_pv strings from shared mem pool | Dave Mitchell | 2007-01-08 | 1 | -1/+1 |
* | 4th patch from: | Marcus Holland-Moritz | 2007-01-04 | 1 | -5/+5 |
* | make parser_free actually free the parser! | Dave Mitchell | 2007-01-04 | 1 | -2/+0 |
* | remove conflict in pending_ident function and field name | Dave Mitchell | 2007-01-02 | 1 | -0/+2 |
* | move easy lexer state variables into PL_parser | Dave Mitchell | 2007-01-02 | 1 | -76/+47 |
* | Quiet a smoke warning in toke.c and bump the copyright year. | Steve Peters | 2007-01-02 | 1 | -2/+2 |
* | split parser initialisation from parser execution | Dave Mitchell | 2007-01-01 | 1 | -0/+20 |
* | in lex_start(), ensure that all lexer state vars are saved | Dave Mitchell | 2006-12-31 | 1 | -13/+49 |
* | Rationalise the logic in lex_start for creating a new temporary if the | Nicholas Clark | 2006-12-31 | 1 | -4/+10 |
* | As freeing up PL_linestr is now done via the scope stack, there's no | Nicholas Clark | 2006-12-31 | 1 | -6/+7 |
* | PL_linestr needs to survive until the end of scope, not just the next | Nicholas Clark | 2006-12-31 | 1 | -0/+4 |
* | Fix leaks in label strings allocation in COPs | Rafael Garcia-Suarez | 2006-12-20 | 1 | -1/+1 |
* | move parser state into new parser object, PL_parser | Dave Mitchell | 2006-12-18 | 1 | -2/+2 |
* | misc MAD coredump fixes and parser leak fixes | Dave Mitchell | 2006-12-13 | 1 | -1/+1 |
* | Verify that the debugger has an array where to store lines before | Rafael Garcia-Suarez | 2006-12-01 | 1 | -45/+38 |
* | Fix a bug in the debugger tracing variables when one was eval'ing | Rafael Garcia-Suarez | 2006-11-13 | 1 | -5/+6 |
* | [perl #40718] perl parser bug leading to memory corruption | Dave Mitchell | 2006-11-08 | 1 | -5/+3 |
* | eval $undef should emit one warning, not three. | Dave Mitchell | 2006-11-02 | 1 | -6/+4 |
* | say() has the same syntax than print(), so forbid to override it | Rafael Garcia-Suarez | 2006-11-02 | 1 | -1/+1 |
* | Silence a warning and call readpipe_override() correctly. | Rafael Garcia-Suarez | 2006-10-31 | 1 | -3/+3 |
* | Make S_readpipe_override() compile with threads; regenerate perlapi.pod | Rafael Garcia-Suarez | 2006-10-31 | 1 | -3/+3 |
* | Make readpipe() overridable (and also `` and qx//) | Rafael Garcia-Suarez | 2006-10-31 | 1 | -4/+38 |
* | stab at UNITCHECK blocks | Alexander Gough | 2006-10-19 | 1 | -1/+17 |
* | Functions with a (_) prototype should behave as unary operators | Rafael Garcia-Suarez | 2006-10-18 | 1 | -1/+1 |
* | First attempt at implementing the _ prototype | Rafael Garcia-Suarez | 2006-10-17 | 1 | -1/+1 |
* | Less brace nesting. | Rafael Garcia-Suarez | 2006-10-17 | 1 | -16/+15 |
* | remove leaveit from toke.c:scan_const | SADAHIRO Tomoyuki | 2006-10-16 | 1 | -13/+5 |