This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Promote v5.36 usage and feature bundles doc
[perl5.git] / toke.c
2022-08-05 Richard LeachReplace sv_2mortal(newSVhek( with newSVhek_mortal
2022-08-04 Karl Williamsontoke.c: Variable should be decleared Size_t, not SSize_t
2022-08-03 Paul "LeoNerd" EvansOP_RUNCV should be created by newSVOP()
2022-07-30 Yves Ortontoke.c - consistently refuse octal digit vars, and...
2022-07-26 Paul "LeoNerd" EvansRename CVf_METHOD to CVf_NOWARN_AMBIGUOUS
2022-07-13 Branislav ZahradníkConsistency - use DEBUG_TOKEN for all tokens
2022-07-04 Tony Cookfix no bareword_filehandles for method calls as first...
2022-07-02 Paul "LeoNerd" EvansRename token types for keywords to add KW_... prefix
2022-06-28 Paul "LeoNerd" EvansRename some grammar rules/tokens to avoid 'method'
2022-06-10 Karl Williamsontoke.c: Remove Undefined C behavior
2022-05-28 Karl Williamsonperlapi: Document start_subparse
2022-05-10 Karl Williamsonperlapi: Document scan_vstring
2022-05-07 Karl Williamsonperlapi: Document filter_del
2022-04-01 Karl Williamsontoke.c: Reorder branches for clarity
2022-04-01 Karl Williamsontoke.c: scan_str(): Rmv special handling for NUL delim
2022-04-01 Karl Williamsontoke.c: C_ARRAY_END() doesn't work on a string
2022-04-01 Karl Williamsontoke.c: Don't assume is UTF-8 when it might not be
2022-04-01 Karl Williamsontoke.c: Move variable set to after possible exit
2022-04-01 Karl Williamsontoke.c Add NUL terminator in both branches
2022-04-01 Karl Williamsontoke.c: Move setting of a variable to later
2022-04-01 Karl Williamsontoke.c: Rmv redundant storage
2022-04-01 Karl Williamsontoke.c: Rmv redundant variable
2022-04-01 Karl Williamsontoke.c: Rmv redundant conditional
2022-04-01 Karl Williamsontoke.c: Change constant to sync with comment
2022-03-28 Karl Williamsontoke.c: White-space, comments
2022-03-24 Karl Williamsontoke.c: Add missing ptr update
2022-03-20 Karl WilliamsonAllow reversal of some paired delimiters; deprecations
2022-03-20 Karl WilliamsonAdd 'extra paired delimiters' feature
2022-03-20 Karl Williamsontoke.c: merge loops, multi-byte delim
2022-03-20 Karl Williamsontoke.c: white-space only
2022-03-20 Karl Williamsontoke.c: Rmv unnecessary conditionals
2022-03-20 Karl Williamsontoke.c: Rename some variables; terminology in comment
2022-03-20 Karl Williamsontoke.c: Split a variable into two for clarity
2022-03-20 Karl Williamsontoke.c: Rmv unnecessary SV
2022-03-07 Richard LeachInlined newSV_type(SVt_NULL) leaner than non-inlined...
2022-02-15 Paul "LeoNerd" EvansNo longer print experimental::isa warning (closes ...
2022-02-15 Karl Williamsontoke.c: Add a couple const to decls
2022-02-15 Karl Williamsontoke.c: I32 considered harmful; change to 'int'
2022-02-06 Branislav ZahradníkFavour switch over if/else if to improve readability
2022-02-06 Branislav ZahradníkCleanup remnants after distinguising C- and perly-...
2022-02-02 Karl Williamsontoke.c: Fix potential C sign error
2022-01-20 Paul "LeoNerd" EvansImplement and test try/catch/finally syntax
2021-12-16 Dagfinn Ilmari Man... Also fix paren-less calls of subs where a filehandle...
2021-12-16 Dagfinn Ilmari Man... Fix function calls being misinterpreted as bareword...
2021-11-28 Richard LeachnewSVpvn_flags().. is more efficient than sv_2mortal...
2021-10-19 Nicholas Clark`for my($k, $v) (%hash)` should not be a syntax error
2021-10-15 Nicholas Clarkn-at-a-time for loops now warn by default (as 'experime...
2021-10-15 Nicholas ClarkImplement n-at-a-time for loops.
2021-10-08 Dagfinn Ilmari Man... Remove NetWare support
2021-09-30 Nicholas ClarkReplace "grandfather ..." in toke.c with a full description
2021-09-04 David Mitchellfix line number of try block
2021-08-25 Paul "LeoNerd" EvansCreate `defer` syntax and `OP_PUSHDEFER` opcode
2021-07-30 Karl Williamsontoke.c: Save a '&' instr by casting to U8
2021-05-31 Michael G SchwernBase *.[ch] files: Replace leading tabs with blanks
2021-05-21 Alyssa Rosstoke.c: fix format warnings 18797/head
2021-02-04 Paul "LeoNerd" EvansInitial attempt at feature 'try' 18505/head
2021-01-20 Karl WilliamsonAllow blanks within and adjacent to {...} constructs
2021-01-20 Karl Williamsontoke.c: White-space, comment only
2021-01-20 Karl Williamsontoke.c: Change variable name
2021-01-20 Karl Williamsontoke.c: Slight simplification
2021-01-20 Karl WilliamsonRevamp regcurly(), regpiece() use of it
2021-01-04 dlaugtDefine RSFP_FILENO before using it
2021-01-04 Tony Cookadd a bareword_filehandles feature, which is enabled...
2020-12-27 Branislav ZahradníkCleanup remnants of 'KEY_err' removal
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_DOLLAR
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_SLASH
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_STAR
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_PAREN_CLOSE
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_PAREN_OPEN
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_PERCENT_SIGN
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_SNAIL
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_PLUS
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_MINUS
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_QUESTION_MARK
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_COLON
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_TILDE
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_EXCLAMATION_MARK
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_COMMA
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_AMPERSAND
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_EQUAL_SIGN
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_DOT
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_SEMICOLON
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_BRACKET_CLOSE
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_BRACKET_OPEN
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_BRACE_CLOSE
2020-12-27 Branislav ZahradníkDistinguish C- and perly- literals - PERLY_BRACE_OPEN
2020-12-08 TAKAI Kousuketoke.c: Eliminate temporary variables base, Base and...
2020-12-08 TAKAI Kousuketoke.c: Preserve "0o" prefix on warnings and strings...
2020-12-08 TAKAI Kousuketoke.c: Recognize "0odddd" octal literals.
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
next