summaryrefslogtreecommitdiff
path: root/toke.c
Commit message (Expand)AuthorAgeFilesLines
* [perl #74006] 5.12.0-RC stuffing bugZefram2010-05-091-0/+5
* Revert "* Fixed typo in toke.c docs, identified by Zefram"Jesse Vincent2010-04-121-1/+1
* * Fixed typo in toke.c docs, identified by Zeframbrian d foy2010-04-111-1/+1
* Revert "Forbid labels with keyword names"Jan Dubois2010-03-021-2/+0
* PATCH: deprecation warnings for unreasonable charnamesKarl Williamson2010-02-201-1/+64
* Add some missing dVAR'sMarcus Holland-Moritz2010-02-201-0/+2
* Avoid returning an undefined SV*Rafael Garcia-Suarez2010-02-191-1/+2
* Make a missing right brace on \N{ fatalKarl Williamson2010-02-191-24/+9
* PATCH: [perl #56444] delayed interpolation of \N{...}Karl Williamson2010-02-191-85/+299
* Allow arbitrary whitespace between NAME and VERSION in "package NAME VERSION;...Jesse Vincent2010-02-031-0/+1
* Parse 'use NAME VERSION' with C localeDavid Golden2010-01-161-0/+6
* Omnibus strict and lax version parsingDavid Golden2010-01-131-1/+48
* Move prototype parsing related warnings from the 'syntax' top level warnings ...Matt S Trout2010-01-101-4/+4
* [perl #71748] Bleadperl f0e67a1 breaks CPAN: Template::Plugin::YAML::Encode 0.02Zefram2010-01-051-12/+8
* Allow "{sub f}" to compileVincent Pit2010-01-031-1/+1
* 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