This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
shift with barewords is deprecated, so this test from perl 1 needs updating.
[perl5.git] / toke.c
2009-10-13 Nicholas ClarkReplace Perl_deprecate() with a macro that calls Perl_c...
2009-10-13 Nicholas ClarkMove the code related to deprecate("comma-less variable...
2009-10-13 Nicholas ClarkUse deprecate() in place of deprecate_old(), and remove...
2009-10-12 Nicholas ClarkAdd Perl_ck_warner_d(), which combines Perl_ckwarn_d...
2009-10-12 Nicholas ClarkAdd Perl_ck_warner(), which combines Perl_ckwarn()...
2009-10-12 Nicholas ClarkRe-order a conditional with ckWARN() last, as it is...
2009-10-12 Nicholas Clarkdeprecate_old() is not public, and only used within...
2009-10-06 David GoldenAdd 'package NAME VERSION' syntax
2009-08-26 Chip Salzenbergfix threaded build after 8ff3e83b
2009-08-26 Chip SalzenbergIn C<use utf8; a=>'b'>, do not set utf8 flag on 'a...
2009-08-26 Chip Salzenbergset utf8 bit on inferred method names when C<use utf8>
2009-08-23 Rafael Garcia-SuarezFix parsing of readline(FH) [perl #68458]
2009-07-30 Rafael Garcia-SuarezAdd new error "Can't use keyword '%s' as a label"
2009-07-29 Rafael Garcia-SuarezForbid labels with keyword names
2009-07-26 Nicholas ClarkTidy code added in 4ba71d51f72efb2af8dc9748dd62219261f2...
2009-07-26 Father ChrysostomosAllow -C on the #! line when it is identical to -C...
2009-07-22 Rafael Garcia-SuarezRemove !!! and ??? operators
2009-05-19 Nicholas ClarkIn Perl_yylex(), no need to Newxz() a buffer we immedia...
2009-05-14 Claes JakobssonAmelioration of the error message "Unrecognized charact...
2009-04-27 Nicholas ClarkRemove all #ifdef MACOS_TRADITIONAL code in core and...
2009-04-13 Nicholas ClarkGvUNIQUE* have been defined as 0 since 2005/06/30 ...
2009-04-12 Nicholas ClarkDeprecate use of the attribute :locked on subroutines.
2009-03-14 Ian GoodacreReturn OPERATOR('[') for '[' without falling through...
2009-02-14 Rafael Garcia-SuarezForbid to use "foreach" as an attribute
2009-01-19 KarlCombine sv_utf8_upgrade with a following grow
2009-01-15 karl williamson[perl #59908] \x, \0, and \N{} not ok in double-quotish...
2009-01-14 Steve HayAllow '\r' after "#line XXX" directives.
2009-01-06 Rafael Garcia-SuarezRequire a space or a newline after a "#line XXX" directive
2008-11-26 Nicholas Clarkywarn() is actually only used inside toke.c, so it...
2008-11-07 Steve PetersA small refactoring based on a comment in an old RT...
2008-11-03 Tim BunceRe: @{"_<$filename"} is unreasonably tied to use of...
2008-11-02 Tom ChristiansenPATCH: Large omnibus patch to clean up the JRRT quotes
2008-11-02 Rafael Garcia-SuarezExplicitly specify some printf formats for constant...
2008-10-30 Nicholas ClarkEliminate (SV *) casts from sv.c and [tu]*.c, except...
2008-10-29 Marcus Holland-MoritzUse pvs macros instead of pvn where possible.
2008-10-29 Nicholas ClarkEliminate (AV *) casts in *.c.
2008-10-29 Nicholas ClarkAdd MUTABLE_CV(), and eliminate (CV *) casts in *.c.
2008-10-28 Nicholas ClarkTwo casts that are MUTABLE_?V.
2008-10-25 Nicholas ClarkUpdate copyright years.
2008-08-24 BramUnintented interpolation of $/ in regex (was: Re: ...
2008-06-17 Steve HayMake sure parser's filehandle is closed when finished
2008-06-08 Rafael Garcia-SuarezTweak the "Illegal character in prototype" warning...
2008-06-08 Renee BaeckerAdd a new warning, "Prototype after '%s'"
2008-05-20 Rafael Garcia-SuarezRe: [PATCH: TODO Tests] Re: [perl #53806] No complain...
2008-05-18 chromaticAdd ..., !!!, and ??? operators
2008-05-16 Rafael Garcia-SuarezPrevent the tokenizer from segfaulting in debug mode...
2008-05-11 Florian RagwitzHandle PL_minus_E before PL_minus_{n,p}.
2008-03-04 Nicholas ClarkThree variables in S_scan_trans only hold flags for...
2008-02-18 Jim Cromie[ patch ] silence 2 possibly uninitialized vars
2008-02-12 Nicholas Clarkassert() that every NN argument is not NULL. Otherwise...
2008-02-09 Dave Mitchell[perl #49472] Attributes + Unkown Error
2008-01-29 Steven Schubigertoke.c/universal.c: consting
2008-01-28 Gerard Goossenalso report forced tokens when using -DT
2008-01-11 Rafael Garcia-SuarezRemove the -P switch
2008-01-03 Nicholas ClarkAdd newSVpvs_flags() as a wrapper to newSVpvn_flags...
2008-01-03 Nicholas ClarkExtend newSVpvn_flags() to also call sv_2mortal() if...
2008-01-02 Nicholas ClarkAdd a new function newSVpvn_flags(), which takes a...
2007-12-27 Nicholas Clark"Automate" change 32648 (ensure that -E always loads...
2007-12-19 Rafael Garcia-SuarezMake -E require 5.11 features
2007-11-21 Rafael Garcia-SuarezRename yylval to pl_yylval, to avoid confusing bogus...
2007-10-18 Nicholas ClarkIt seems crazy for Perl_yylex() to individually shift...
2007-10-18 Nicholas ClarkInline and eliminate S_incl_perldb(), as it's only...
2007-10-18 Nicholas ClarkEliminate some uses of sv_setpv() where we already...
2007-10-18 Nicholas ClarkChange newSVpv() to newSVpvn() where we know the length...
2007-10-18 Nicholas ClarkDon't call strlen() on CopFILE() for the unthreaded...
2007-10-18 Rafael Garcia-SuarezSilence a casting warning
2007-10-18 Nicholas ClarkWhere possible, change gv_fetchfile() to gv_fetchfile_f...
2007-10-16 Nicholas ClarkGiven that S_feature_is_enabled() is a static function...
2007-10-16 Nicholas ClarkPass in explicit lengths for the key and type arguments to
2007-10-06 Craig A. BerryRe: several compilation problems on VMS in perl@32039
2007-10-06 Nicholas ClarkFinally! Worked out how to const Perl_moreswitches().
2007-10-06 Nicholas ClarkRemove remaining C<Nullch>s and C<Nullsv>s
2007-10-05 Nicholas ClarkIn the MAD code, eliminate one Perl_sv_catpvf() and...
2007-10-05 Nicholas ClarkPL_cshname is actually a constant value known at compil...
2007-10-05 Nicholas ClarkEliminate most *printf-like calls that use a simple...
2007-09-07 Rafael Garcia-SuarezRemove the 'err' keyword
2007-08-10 Rafael Garcia-SuarezFix compilation with threads
2007-08-10 Claes JacobssonRe: [PATCH] Adding more information to "Unrecognized...
2007-07-11 Rick DelaneyRe: [perl #43545] 'no warnings' effects $@.
2007-07-07 Gerard GoossenMAD: disable constant subs when PL_madskills
2007-06-07 Father ChrysostomosRe: [perl #43082] "$_[0]->method" interpolation
2007-06-05 Rafael Garcia-SuarezRemove support for assertions and -A
2007-05-21 Dave Mitchellmove PL_error_count into the PL_parser struct
2007-05-21 Dave Mitchellmove PL_multi_end into the PL_parser struct
2007-05-21 Dave Mitchellmove PL_tokenbuf into the PL_parser struct
2007-05-15 Dave Mitchellchange 31200 broke src filters used within an eval
2007-05-13 Dave Mitchellfix some (mostly MAD) compiler warnings
2007-05-12 Dave Mitchellmove PL_in_my and PL_in_my_stash into the PL_parser...
2007-05-12 Dave Mitchelleliminate a stray PL_lex_state
2007-05-12 Dave Mitchellsave old PL_curcop value in parser struct
2007-05-12 Dave Mitchellmove PL_rsfp_filters into the parser struct
2007-05-11 Dave Mitchellmove PL_rsfp into the PL_parser struct
2007-05-05 Dave Mitchellmove PL_lex_state into the PL_parser struct
2007-05-05 Dave Mitchellmigrate more variables to PL_parser struct:
2007-05-04 Dave Mitchellmove some more variables into the PL_parser struct:
2007-05-04 Dave Mitchelltoke.c changes missed from change #31134
2007-05-02 Jerry D. HeddenRemove ext/Thread
2007-04-24 Dave Mitchellmove PL_linestr from the interpreter struct to the...
2007-04-24 Steve HaySilence 5 "possible loss of data" warnings from VC6
2007-04-21 Nicholas ClarkFix bug in change 31015 - saving the wrong size of...
next