summaryrefslogtreecommitdiff
path: root/toke.c
Commit message (Expand)AuthorAgeFilesLines
...
* prototype changes for eventually supporting C<binmode(F, ":raw")>Gurusamy Sarathy2000-03-051-1/+1
* fixes for most warnings identified by gcc -WallGurusamy Sarathy2000-03-051-19/+17
* integrate cfgperl contents into mainline; add new tests fromGurusamy Sarathy2000-03-051-9/+65
|\
| * Integrate with Sarathy.Jarkko Hietaniemi2000-03-051-9/+13
| |\ | |/ |/|
* | optimize change#5533 to stick to IVs if constant is <= IV_MAX,Gurusamy Sarathy2000-03-051-2/+6
* | scan_num() sticks to UVs rather than IVs (now -2147483648 doesn'tGurusamy Sarathy2000-03-051-9/+8
| * more cpp cosmetics, logic cleanupJarkko Hietaniemi2000-03-051-9/+13
| * Reformat the fearful cpp expression to be a little bit less fearful.Jarkko Hietaniemi2000-03-051-2/+4
| * BUG: Integer floatifies? +PATCH: reading BIG integers with SMALL floatsMatthias Urlichs2000-03-041-0/+54
|/
* warn about /(?p{})/ (from Simon Cozens)Gurusamy Sarathy2000-03-031-2/+2
* /(?p{})/ changed to /(??{})/, per Larry's suggestion (fromGurusamy Sarathy2000-03-031-1/+1
* support for version vectors in UNIVERSAL::VERSION(), so thatGurusamy Sarathy2000-02-261-3/+28
* per Larry's idea, parse 1.2.3 as v1.2.3; C<require 5.6.0> andGurusamy Sarathy2000-02-231-10/+30
* change#5205 wasn't quite right; SvCUR() should be SvLEN()Gurusamy Sarathy2000-02-221-2/+2
* fix memory overrun due to off-by-one in change#5192Gurusamy Sarathy2000-02-221-2/+2
* improvements for high-bit text literals (from Gisle Aas)Gurusamy Sarathy2000-02-221-41/+69
* allow C<print v10>, $h{v13.10} etc.Gurusamy Sarathy2000-02-221-23/+25
* remove dual-valueness of v-strings (i.e., they are pure stringsGurusamy Sarathy2000-02-211-12/+13
* lexical warnings update, ability to inspect bitmask in callingGurusamy Sarathy2000-02-201-13/+13
* default mkdir() mode argument to 0777Gurusamy Sarathy2000-02-201-1/+1
* some rearrangement of the includes for easier "microperl" build;Gurusamy Sarathy2000-02-191-7/+0
* make comparisons promote to utf8 as necessary (from Gisle Aas)Gurusamy Sarathy2000-02-191-4/+4
* avoid accidental #line directives (from Rick DelaneyGurusamy Sarathy2000-02-151-8/+19
* fix incompatibility with bison generated parser (fromGurusamy Sarathy2000-02-151-0/+5
* longstanding bug in parsing "require VERSION", could reallocateGurusamy Sarathy2000-02-101-1/+1
* stringify "\x{FFF}" to utf8 correctly; set SvUTF8 on "\x{XX}"Gurusamy Sarathy2000-02-071-3/+9
* set SvUTF8 on vectors only if there are chars > 127; update copyrightGurusamy Sarathy2000-02-061-3/+13
* fix parse error on C<{ use strict }> and other constructs thatGurusamy Sarathy2000-02-061-0/+9
* allow "\x{12ab}" even without C<use utf8>Gurusamy Sarathy2000-02-061-6/+0
* support sprintf("v%v", v1.2.3) (works on any string argument, inGurusamy Sarathy2000-02-061-1/+5
* fix pad_alloc panic from C<my $w; sub { my($i) = @_; sub { $w } }>Gurusamy Sarathy2000-02-041-2/+1
* mark literal utf8 in string literals properlyGurusamy Sarathy2000-02-011-1/+15
* runtime now looks at the SVf_UTF8 bit on the SV to decideGurusamy Sarathy2000-01-311-51/+49
* revised attribute syntax: C<my $foo :a :b :c>, C<my $foo : a b c>Gurusamy Sarathy2000-01-261-1/+3
* s/STOP/CHECK/ blocksGurusamy Sarathy2000-01-261-5/+3
* change#3744 should have made grep more like map instead of theGurusamy Sarathy2000-01-261-2/+2
* fix parse failure of (my $foo : bar) and similar (from SpiderGurusamy Sarathy2000-01-261-2/+18
* disallow our($foo::bar)Gurusamy Sarathy2000-01-231-0/+4
* #line directives without a filename leave the file name as it wasGurusamy Sarathy2000-01-221-2/+0
* add patch for printf-style format typechecks (from Robin BarkerGurusamy Sarathy2000-01-221-2/+2
* nailed "our" declarations, and better warnings on duplicateGurusamy Sarathy2000-01-141-5/+9
* leave DATA open in binmode if __END__ line doesn't have CRLFGurusamy Sarathy1999-12-301-1/+3
* enable the PERL_BINMODE_SCRIPTS behavior by default on WindowsGurusamy Sarathy1999-12-301-8/+49
* CR-LF support broken for formatsGurusamy Sarathy1999-12-301-0/+8
* typecasts neededGurusamy Sarathy1999-12-281-2/+2
* fix typosGurusamy Sarathy1999-12-261-1/+1
* support for v5.5.640 style version numbersGurusamy Sarathy1999-12-241-20/+87
* fix from Larry for parsing C<{ 0x1 => 'foo'}> as anGurusamy Sarathy1999-12-181-3/+6
* avoid mismatched expectation <-> int types for C++ buildsGurusamy Sarathy1999-12-091-2/+2
* patch to fix parser bug in C<${h{${a[0]}}} = 13>Larry Wall1999-12-081-12/+8