summaryrefslogtreecommitdiff
path: root/toke.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* use SAVEINT() rather than SAVEDESTRUCTOR() for saving PL_expect etc.Gurusamy Sarathy1999-12-081-30/+2
* longstanding typo in lexer: PL_lex_expect was not properlyGurusamy Sarathy1999-12-081-1/+1
* make weak keyword check look for defined(&lock), notGurusamy Sarathy1999-12-041-0/+1
* more complete pseudo-fork() support for WindowsGurusamy Sarathy1999-12-011-4/+4
* sundry cleanups for cloned interpreters (only known failure modeGurusamy Sarathy1999-11-141-4/+4
* another change towards a shareable optree: avoid pointer to filegvGurusamy Sarathy1999-11-111-47/+47
* IoDIRP may be fake when used in source filters, mark as suchGurusamy Sarathy1999-11-091-3/+8
* implement STOP blocks and fix compiler to use them (minimallyGurusamy Sarathy1999-11-041-0/+4
* remove VIRTUAL tag, PERL_OBJECT doesn't need it anymoreGurusamy Sarathy1999-11-041-1/+0
* macros for COP.cop_filegv accessGurusamy Sarathy1999-11-011-13/+11
* warnings and const violations identified by compiling in C++ modeGurusamy Sarathy1999-10-261-6/+7