| Commit message (Expand) | Author | Age | Files | Lines |
* | Make \N{ } deprecation warnings fatalizable | Father Chrysostomos | 2013-05-27 | 1 | -4/+12 |
* | Turn \N{ } deprecation warnings on by default | Father Chrysostomos | 2013-05-27 | 1 | -4/+5 |
* | Add comments describing the operation of S_scan_ident(). | Nicholas Clark | 2013-05-22 | 1 | -0/+19 |
* | toke.c: Remove redundant test | Karl Williamson | 2013-05-20 | 1 | -1/+1 |
* | toke.c: VALID_LEN_ONE_IDENT only needs a char, not a char* | Brian Fraser | 2013-05-20 | 1 | -5/+5 |
* | toke.c, S_intuit_method: Minor parsing speedup for 'maybe_method $foo' | Brian Fraser | 2013-05-20 | 1 | -5/+7 |
* | toke.c: Call base macro that does the same thing | Karl Williamson | 2013-05-20 | 1 | -1/+1 |
* | toke.c/MAD: silence a couple of warnings | David Mitchell | 2013-05-09 | 1 | -0/+2 |
* | Handle /@a/ array expansion within regex engine | David Mitchell | 2013-04-20 | 1 | -1/+4 |
* | fix runtime /(?{})/ with overload::constant qr | David Mitchell | 2013-04-12 | 1 | -1/+3 |
* | add lex_re_reparsing boolean to yy_parser struct | David Mitchell | 2013-04-12 | 1 | -3/+4 |
* | Eliminate PL_reg_state.re_reparsing, part 2 | David Mitchell | 2013-04-12 | 1 | -2/+0 |
* | Eliminate PL_reg_state.re_reparsing, part 1 | David Mitchell | 2013-04-12 | 1 | -3/+9 |
* | Make smartmatch, given & when experimental | Brian Fraser | 2013-03-26 | 1 | -0/+9 |
* | In In S_scan_heredoc(), avoid memNE() reading beyond the end of s. | Nicholas Clark | 2013-03-25 | 1 | -2/+2 |
* | In S_scan_heredoc(), the explicit test for '\n' duplicates the strNE(). | Nicholas Clark | 2013-03-25 | 1 | -1/+1 |
* | toke.c, S_scan_ident: Ignore whitespace on both sides of ${ ... } | Brian Fraser | 2013-03-15 | 1 | -9/+6 |
* | PATCH: [perl #117101] toke.c: Make \$$1 work again. | Brian Fraser | 2013-03-09 | 1 | -1/+5 |
* | open FOO || die; doesn't need a special identifier parser. | Brian Fraser | 2013-03-06 | 1 | -9/+3 |
* | Restrict the valid identifier syntax, fix some identifier bugs. | Brian Fraser | 2013-03-06 | 1 | -8/+23 |
* | Fix several differences in the parsing of $.. and ${...} | Brian Fraser | 2013-03-06 | 1 | -85/+54 |
* | Stop SEGV on 'our sub { syntax error }' | Peter Martini | 2013-03-03 | 1 | -0/+5 |
* | Add, fix comments | Karl Williamson | 2013-02-25 | 1 | -1/+2 |
* | Fix format string warnings in toke.c Changed literals to "%s", literal | Peter Martini | 2013-01-25 | 1 | -10/+10 |
* | Deprecate certain rare uses of backslashes within regexes | Karl Williamson | 2013-01-19 | 1 | -18/+74 |
* | toke.c: White-space alignment only | Karl Williamson | 2013-01-19 | 1 | -8/+8 |
* | rearrange initializations in S_intuit_more for better code gen | Daniel Dragan | 2013-01-18 | 1 | -3/+5 |
* | Add warnings for "\08", /\017/ | Karl Williamson | 2013-01-14 | 1 | -1/+7 |
* | grok_bslash_[ox]: Add param to silence non-portable warnings | Karl Williamson | 2013-01-11 | 1 | -0/+4 |
* | Add optional strict mode to grok_bslash_[xo] | Karl Williamson | 2013-01-11 | 1 | -2/+6 |
* | Revise calling sequences for grok_bslash_[xo] | Karl Williamson | 2013-01-11 | 1 | -6/+4 |
* | toke.c: Silence compiler uninitialized warning | Karl Williamson | 2013-01-06 | 1 | -1/+2 |
* | charnames: Deprecate character names with spacing issues | Karl Williamson | 2013-01-04 | 1 | -0/+12 |
* | Change core calls of isALNUM() to isWORDCHAR() | Karl Williamson | 2012-12-31 | 1 | -14/+14 |
* | Convert uses of isALNUM_lazy_if to isWORDCHAR_lazy_if | Karl Williamson | 2012-12-31 | 1 | -18/+18 |
* | Create internal _is_utf8_mark() | Karl Williamson | 2012-12-22 | 1 | -4/+4 |
* | handy.h: Create isALPHANUMERIC() and kin | Karl Williamson | 2012-12-22 | 1 | -2/+5 |
* | Silence some g++ compiler warnings | Karl Williamson | 2012-12-09 | 1 | -2/+2 |
* | Stop invalid charnames from leaking | Father Chrysostomos | 2012-12-08 | 1 | -0/+1 |
* | toke.c:S_new_constant: Use NN SvREFCNT_inc in 2 places | Father Chrysostomos | 2012-12-08 | 1 | -2/+2 |
* | Stop Constant(%s) errors from leaking | Father Chrysostomos | 2012-12-08 | 1 | -11/+9 |
* | Change Constant(undef) error to something meaningful | Father Chrysostomos | 2012-12-08 | 1 | -3/+7 |
* | toke.c: Make _charnames check more robust | Father Chrysostomos | 2012-12-08 | 1 | -3/+2 |
* | Fewer strEQ calls in toke.c:S_new_constant | Father Chrysostomos | 2012-12-08 | 1 | -3/+5 |
* | Stop "\N{...}" from leaking after errors | Father Chrysostomos | 2012-12-05 | 1 | -1/+4 |
* | Stop v111111111111111 from leaking under fatal warnings | Father Chrysostomos | 2012-12-05 | 1 | -0/+4 |
* | toke.c apidocs: Note that scan_vstring might croak | Father Chrysostomos | 2012-12-05 | 1 | -1/+6 |
* | Remove "register" declarations | Karl Williamson | 2012-11-24 | 1 | -12/+12 |
* | Warn when declaring lexsubs, not when enabling them | Father Chrysostomos | 2012-11-24 | 1 | -0/+3 |
* | Stop toke.c:S_scan_const from leaking | Father Chrysostomos | 2012-11-23 | 1 | -4/+6 |