This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fetch magic on the first stacked filetest, not the last
[perl5.git] / toke.c
2020-08-23 Karl Williamsontoke.c: Use SvPV_shrink_to_cur
2020-08-04 ☢ ℕicolas ℝUse PERL_REVISION in toke.c for -E switch
2020-07-30 Richard LeachRemove obsolete FCRYPT ifdefs and associated PL_cryptse...
2020-07-20 Dagfinn Ilmari Man... Remove use of dVAR in core
2020-05-20 Tony Cookeliminate recursion from yyl_fake_eof() into yyl_try()
2020-05-20 Tony Cookeliminate len from recursive yyl_try/yyl_fake_eof
2020-05-20 Tony Cookremoved unused len parameter from yyl_dblquote()
2020-04-13 Dagfinn Ilmari Man... Remove spurious double spaces before open braces in...
2020-03-27 Hugo van der Sandengh-17645: avoid oob read on conflict marker detection
2020-03-13 Zeframchained comparisons
2020-03-05 Stefan SeifertFix variable name in wrap_keyword_plugin documentation
2020-02-16 Dagfinn Ilmari Man... Add 'indirect' feature that can be turned off to disabl... 17477/head
2020-02-12 Karl Williamsontoke.c: Split code to load _charnames.pm into own fnc
2020-02-12 Karl Williamsontoke.c: Change variable name, add one
2020-02-12 Karl Williamsontoke.c: extract charnames code from S_new_constant
2020-02-10 Yves Ortontoke.c - handle ${10} properly - Issue #12948
2020-02-02 Yves Ortontoke.c: fix Multidimensional array heuristic to ignore...
2020-01-23 Karl Williamsontoke.c: Don't accept illegal code points
2020-01-23 Karl WilliamsonRemove dquote_inline.h
2020-01-23 Karl Williamson(toke|regcomp).c: Use common fcn to handle \0 problems
2020-01-23 Karl WilliamsonRestructure grok_bslash_[ox]
2020-01-23 Karl WilliamsonRestructure grok_bslash_c
2020-01-23 Karl WilliamsonHoist code point portability warnings
2020-01-04 Karl Williamsonutf8.c: Change parameter types of internal fcns
2019-12-18 Karl WilliamsonAdd memCHRs() macro and use it
2019-12-17 Karl WilliamsonNote that certain flags are documented
2019-12-11 Karl WilliamsonRmv leading underscore from macro name
2019-12-09 Paul "LeoNerd" EvansAdd the `isa` operator
2019-11-12 James E KeenanFix: local variable hiding parameter of same name
2019-11-12 David Mitchellfix build under PERL_GLOBAL_STRUCT_PRIVATE
2019-11-07 Karl WilliamsonRemove swashes from core
2019-11-07 Karl WilliamsonReimplement tr/// without swashes
2019-11-07 Karl WilliamsonChange macro name in tr/// code
2019-11-07 Karl Williamsontoke.c: comment, White-space only
2019-11-05 Karl Williamsontoke.c: comment changes
2019-11-05 Dagfinn Ilmari Man... Remove unused `key` and `orig_keyword` parameters from...
2019-11-05 Dagfinn Ilmari Man... Rename `tmp` local to `key` in `yyl_keylookup`
2019-11-05 Dagfinn Ilmari Man... Remove unused `key` parameter from `yyl_just_a_word`
2019-11-04 Aaron Cranetoke.c: const-ify formbrack parameters
2019-11-04 Aaron Cranetoke.c: replace recursive calls to yyl_try() with goto
2019-11-04 Aaron Cranetoke.c: delete unused bof parameters
2019-11-04 Aaron Cranetoke.c: don't pass around a copy of PL_parser->saw_infi...
2019-11-04 Aaron Cranetoke.c: remove some spurious orig_keyword uses
2019-11-04 Aaron Cranetoke.c: remove formbrack argument from yyl_try()
2019-11-04 Aaron Cranetoke.c: delete weird initial_state arg to yyl_try()
2019-11-04 Aaron Cranetoke.c: factor out static yyl_keylookup()
2019-11-04 Aaron Cranetoke.c: factor out static yyl_key_core() and yyl_word_o...
2019-11-04 Aaron Cranetoke.c: bundle some yyl_just_a_word() params into a...
2019-11-04 Aaron Cranetoke.c: factor out static yyl_just_a_word()
2019-11-04 Aaron Cranetoke.c: stop passing around several needless local...
2019-11-04 Aaron Cranetoke.c: factor out static yyl_strictwarn_bareword()
2019-11-04 Aaron Cranetoke.c: remove the really_sub goto label
2019-11-04 Aaron Cranetoke.c: factor out static yyl_constant_op()
2019-11-04 Aaron Cranetoke.c: factor out static yyl_safe_bareword()
2019-11-04 Aaron Cranetoke.c: fold some initialisations into the correspondin...
2019-11-04 Aaron Cranetoke.c: factor out static yyl_fatcomma()
2019-11-04 Aaron Cranetoke.c: factor out static yyl_fake_eof()
2019-11-03 Karl Williamsontoke.c: Fix bug tr/// upgrading to UTF-8 in middle
2019-10-30 Tony Cookremove now unneeded FEATURE_IS_ENABLED()
2019-10-28 Tony Cookfix the type of orig_keyword to match the only caller
2019-10-28 Tony Cookreinstate the [perl #129069] fix reverted by f190a1be6aa
2019-10-25 Craig A. Berryvoid functions don't need to indicate lack of return
2019-10-21 Dagfinn Ilmari Man... Fully spell out "subroutine" and "variable"
2019-10-21 Aaron Cranetoke.c: factor out static yyl_my()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_eol()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_do()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_foreach()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_require()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_croak_unrecognised()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_data_handle()
2019-10-21 Aaron Cranetoke.c: remove needless `if (0)`
2019-10-21 Aaron Cranetoke.c: reorder to put static function before its caller
2019-10-21 Aaron Cranetoke.c: remove the "retry" label
2019-10-21 Aaron Cranetoke.c: factor most of Perl_yylex() out into static...
2019-10-21 Aaron Cranetoke.c: factor out static yyl_backslash()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_backtick()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_sglquote()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_dblquote()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_rightpointy()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_leftpointy()
2019-10-21 Aaron Cranetoke.c: simplify conflict-marker detection
2019-10-21 Aaron Cranetoke.c: factor out static yyl_rightparen()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_leftparen()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_rightsquare()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_tilde()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_leftsquare()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_slash()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_snail()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_bang()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_verticalbar()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_ampersand()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_rightcurly()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_leftcurly()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_colon()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_caret()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_percent()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_star()
2019-10-21 Aaron Cranetoke.c: factor out static yyl_plus()
2019-10-21 Aaron CranePerl_yylex(): merge two conditions for readability
2019-10-21 Aaron Cranetoke.c: factor out static yyl_subproto()
next