summaryrefslogtreecommitdiff
path: root/toke.c
Commit message (Expand)AuthorAgeFilesLines
* Remove spurious case of warning "Use of %s without parentheses is ambiguous"Rafael Garcia-Suarez2009-12-201-2/+0
* Introduce C<use feature "unicode_strings">Rafael Garcia-Suarez2009-12-201-1/+1
* Make eval {} compile directly to OP_ENTERTRYRafael Garcia-Suarez2009-12-201-2/+8
* Fix for [perl #70910] wrong line number in syntax error messageZefram2009-12-091-1/+2
* -Dmad: double free or corruptionTony Cook2009-12-011-1/+1
* Fix -DPERL_NO_UTF16_FILTEREric Brine2009-11-301-7/+15
* Allow a closing brace after an "use VERSION"Vincent Pit2009-11-281-1/+2
* -Dmad minitest failure bisectZefram2009-11-261-3/+0
* perl-5.11.2 breaks NYTProf savesrc option (Lexer API suspected)Zefram2009-11-251-5/+8
* Also skip spaces after variable if we are within lexical brackets. Fixes #700...Gerard Goossen2009-11-251-1/+1
* lexer API fixesZefram2009-11-191-3/+6
* Remove dead preprocessor code from toke.cJan Dubois2009-11-161-13/+0
* Fix crash in refactored lexer internalsJan Dubois2009-11-161-1/+1
* lexer APIZefram2009-11-151-213/+758
* Add length and flags arguments to Perl_allocmy().Nicholas Clark2009-11-091-2/+2
* Bareword sub lookupsZefram2009-11-081-30/+41
* Add length and flags arguments to Perl_pad_findmy(), moving it to the public ...Nicholas Clark2009-11-071-2/+2
* Placate a warning from Borland's compiler.Nicholas Clark2009-11-071-1/+1
* Implement facility to plug in syntax triggered by keywordsJesse Vincent2009-11-051-17/+58
* Deprecate use of := to mean an empty attribute list in my $pi := 4;Nicholas Clark2009-11-041-0/+3
* S_utf16_textfilter() was not returning EOF correctly in some situations.Nicholas Clark2009-11-011-2/+6
* Remove Perl_pmflag() from the public API, and mark it as deprecated.Nicholas Clark2009-11-011-11/+18
* In S_pending_ident(), only call gv_fetchpvn_flags() if the warning is enabled.Nicholas Clark2009-10-241-4/+5
* S_utf16_textfilter() can use the filter GV itself for an SV buffer.Nicholas Clark2009-10-231-3/+3
* In S_utf16_textfilter() replace sv_chop() with code, as we move 1 byte at most.Nicholas Clark2009-10-221-1/+9
* S_utf16_textfilter() needs to avoid splitting UTF-16 surrogate pairs.Nicholas Clark2009-10-221-1/+20
* Re-write S_utf16_textfilter() to correctly handle partial reads of UTF-16.Nicholas Clark2009-10-221-30/+71
* Remove the "hack" that removes SVt_UTF8 in the UTF16 filter, by fixing t/TESTNicholas Clark2009-10-221-4/+0
* Refactor S_utf16_textfilter() to use a second SV for the UTF-16 input.Nicholas Clark2009-10-211-14/+28
* Remove the PERLIO * argument to S_filter_gets(), as it's always PL_rsfpNicholas Clark2009-10-211-10/+12
* S_utf16_textfilter() needs FILTER_DATA() to get the filter's state SV.Nicholas Clark2009-10-211-1/+1
* S_utf16_textfilter() was failing honour error returns from FILTER_READ()Nicholas Clark2009-10-211-1/+1
* panic if S_utf16_textfilter() is called in block mode.Nicholas Clark2009-10-211-0/+7
* Make filter_read() in block mode create a well-formed SV with a trailing '\0'Nicholas Clark2009-10-211-1/+2
* 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