summaryrefslogtreecommitdiff
path: root/toke.c
Commit message (Expand)AuthorAgeFilesLines
* Pull out filter setup code from S_swallow_bom() into S_add_utf16_textfilter()Nicholas Clark2009-10-201-31/+25
* MAD-only code in S_swallow_bom() duplicated the actions of sv_setpvn()Nicholas Clark2009-10-201-9/+0
* Merge S_utf16_textfilter and S_utf16rev_textfilter().Nicholas Clark2009-10-181-27/+15
* Note why S_pending_ident's prototype can't be generated by embed.fncNicholas Clark2009-10-181-0/+2
* Generate prototypes for utf16_textfilter and utf16rev_textfilter using embed.fncNicholas Clark2009-10-181-10/+5
* Replace Perl_deprecate() with a macro that calls Perl_ck_warner()Nicholas Clark2009-10-131-12/+0
* Move the code related to deprecate("comma-less variable list") into a function.Nicholas Clark2009-10-131-10/+10
* Use deprecate() in place of deprecate_old(), and remove S_deprecate_old().Nicholas Clark2009-10-131-21/+4
* Add Perl_ck_warner_d(), which combines Perl_ckwarn_d() and Perl_warner().Nicholas Clark2009-10-121-28/+22
* Add Perl_ck_warner(), which combines Perl_ckwarn() and Perl_warner().Nicholas Clark2009-10-121-75/+60
* Re-order a conditional with ckWARN() last, as it is a function call.Nicholas Clark2009-10-121-1/+1
* deprecate_old() is not public, and only used within toke.c, so can be static.Nicholas Clark2009-10-121-2/+2
* Add 'package NAME VERSION' syntaxDavid Golden2009-10-061-0/+1
* fix threaded build after 8ff3e83bChip Salzenberg2009-08-261-1/+1
* In C<use utf8; a=>'b'>, do not set utf8 flag on 'a' [perl #68812]Chip Salzenberg2009-08-261-1/+3
* set utf8 bit on inferred method names when C<use utf8>Chip Salzenberg2009-08-261-1/+1
* Fix parsing of readline(FH) [perl #68458]Rafael Garcia-Suarez2009-08-231-1/+13
* Add new error "Can't use keyword '%s' as a label"Rafael Garcia-Suarez2009-07-301-3/+6
* Forbid labels with keyword namesRafael Garcia-Suarez2009-07-291-3/+3
* Tidy code added in 4ba71d51f72efb2af8dc9748dd62219261f2e1fd.Nicholas Clark2009-07-261-5/+4
* Allow -C on the #! line when it is identical to -C on the command line.Father Chrysostomos2009-07-261-1/+9
* Remove !!! and ??? operatorsRafael Garcia-Suarez2009-07-221-8/+0
* In Perl_yylex(), no need to Newxz() a buffer we immediately write to.Nicholas Clark2009-05-191-1/+1
* Amelioration of the error message "Unrecognized character %s in column %d"Claes Jakobsson2009-05-141-2/+14
* Remove all #ifdef MACOS_TRADITIONAL code in core and non-dual-life XS code.Nicholas Clark2009-04-271-10/+0
* GvUNIQUE* have been defined as 0 since 2005/06/30 - high time to remove them.Nicholas Clark2009-04-131-5/+0
* Deprecate use of the attribute :locked on subroutines.Nicholas Clark2009-04-121-1/+1
* Return OPERATOR('[') for '[' without falling through to case '~', avoiding mi...Ian Goodacre2009-03-141-1/+4
* Forbid to use "foreach" as an attributeRafael Garcia-Suarez2009-02-141-0/+1
* Combine sv_utf8_upgrade with a following growKarl2009-01-191-7/+9
* [perl #59908] \x, \0, and \N{} not ok in double-quotish when followed by > \x100karl williamson2009-01-151-70/+94
* Allow '\r' after "#line XXX" directives.Steve Hay2009-01-141-1/+1
* Require a space or a newline after a "#line XXX" directiveRafael Garcia-Suarez2009-01-061-0/+2
* ywarn() is actually only used inside toke.c, so it can be static.Nicholas Clark2008-11-261-2/+2
* A small refactoring based on a comment in an old RT ticket (RTSteve Peters2008-11-071-7/+1
* Re: @{"_<$filename"} is unreasonably tied to use of DB::DB ($^P & 0x2)Tim Bunce2008-11-031-7/+7
* PATCH: Large omnibus patch to clean up the JRRT quotesTom Christiansen2008-11-021-1/+3
* Explicitly specify some printf formats for constant strings.Rafael Garcia-Suarez2008-11-021-2/+2
* Eliminate (SV *) casts from sv.c and [tu]*.c, except for the cast inNicholas Clark2008-10-301-6/+6
* Use pvs macros instead of pvn where possible.Marcus Holland-Moritz2008-10-291-14/+14
* Eliminate (AV *) casts in *.c.Nicholas Clark2008-10-291-1/+1
* Add MUTABLE_CV(), and eliminate (CV *) casts in *.c.Nicholas Clark2008-10-291-3/+3
* Two casts that are MUTABLE_?V.Nicholas Clark2008-10-281-2/+2
* Update copyright years.Nicholas Clark2008-10-251-2/+2
* Unintented interpolation of $/ in regex (was: Re: [perlBram2008-08-241-1/+6
* Make sure parser's filehandle is closed when finishedSteve Hay2008-06-171-2/+2
* Tweak the "Illegal character in prototype" warning so it's moreRafael Garcia-Suarez2008-06-081-2/+4
* Add a new warning, "Prototype after '%s'"Renee Baecker2008-06-081-2/+39
* Re: [PATCH: TODO Tests] Re: [perl #53806] No complain about barewordRafael Garcia-Suarez2008-05-201-1/+1
* Add ..., !!!, and ??? operatorschromatic2008-05-181-2/+15