Complex tweakery.
[p5sagit/p5-mst-13.2.git] / toke.c
2000-05-02 Gurusamy Sarathy change#3798 broke the meaning of "\0_7_7", tr/\0_/...
2000-04-30 Gurusamy Sarathy extend "Unrecognized escape" warning to \8, \9, and...
2000-04-28 Gurusamy Sarathy fix line renumbering bug in C<eval qq[#line 10 "X"...
2000-04-28 Gurusamy Sarathy qw(a\\b) must be parsed like 'a\\b', i.e., backslash...
2000-04-27 Gurusamy Sarathy autoquote barewords followed by newline and arrow properly
2000-04-24 Jarkko Hietaniemi Integrate with Sarathy.
2000-04-24 Gurusamy Sarathy POSIX-BC tweak (from Ignasi Roca <ignasi.roca@fujitsu...
2000-03-21 Gurusamy Sarathy make parenthetic warnings look consistent; make diagnos...
2000-03-20 Gurusamy Sarathy change#5797 didn't do the right thing for "\xff\N{WHITE...
2000-03-19 Gurusamy Sarathy integrate cfgperl contents into mainline
2000-03-19 Gurusamy Sarathy produce better error message when \N{...} is used without
2000-03-18 Jarkko Hietaniemi Integrate with Sarathy.
2000-03-18 Gurusamy Sarathy queued errors may not be displayed after the PL_error_c...
2000-03-18 Jarkko Hietaniemi Use the newSVuv().
2000-03-18 Gurusamy Sarathy make "\N{...}" enable utf8-ness correctly
2000-03-13 Gurusamy Sarathy don't check for errno after Atof() (atof() doesn't...
2000-03-12 Gurusamy Sarathy Larry's patch to disallow CORE::Snark, with perldiag...
2000-03-11 Jarkko Hietaniemi Use Atof() instead of bare strtod(); ditto for Atol...
2000-03-06 Jarkko Hietaniemi Integrate with Sarathy.
2000-03-06 Gurusamy Sarathy 64-bit build fix on VMS (from Dan Sugalski)
2000-03-06 Gurusamy Sarathy integrate cfgperl changes into mainline
2000-03-05 Jarkko Hietaniemi Integrate with Sarathy.
2000-03-05 Gurusamy Sarathy prototype changes for eventually supporting C<binmode...
2000-03-05 Jarkko Hietaniemi the monster cpp expression needs to be on one line to
2000-03-05 Jarkko Hietaniemi IRIX cpp is fussy.
2000-03-05 Jarkko Hietaniemi Integrate with Sarathy.
2000-03-05 Gurusamy Sarathy fixes for most warnings identified by gcc -Wall
2000-03-05 Gurusamy Sarathy integrate cfgperl contents into mainline; add new tests...
2000-03-05 Jarkko Hietaniemi dethinko
2000-03-05 Jarkko Hietaniemi Integrate with Sarathy.
2000-03-05 Gurusamy Sarathy optimize change#5533 to stick to IVs if constant is...
2000-03-05 Gurusamy Sarathy scan_num() sticks to UVs rather than IVs (now -21474836...
2000-03-05 Jarkko Hietaniemi more cpp cosmetics, logic cleanup
2000-03-05 Jarkko Hietaniemi Reformat the fearful cpp expression to be a little...
2000-03-04 Matthias Urlichs BUG: Integer floatifies? +PATCH: reading BIG integers...
2000-03-03 Gurusamy Sarathy warn about /(?p{})/ (from Simon Cozens)
2000-03-03 Gurusamy Sarathy /(?p{})/ changed to /(??{})/, per Larry's suggestion...
2000-02-26 Gurusamy Sarathy support for version vectors in UNIVERSAL::VERSION(...
2000-02-23 Gurusamy Sarathy per Larry's idea, parse 1.2.3 as v1.2.3; C<require...
2000-02-22 Gurusamy Sarathy change#5205 wasn't quite right; SvCUR() should be SvLEN()
2000-02-22 Gurusamy Sarathy fix memory overrun due to off-by-one in change#5192
2000-02-22 Gurusamy Sarathy improvements for high-bit text literals (from Gisle...
2000-02-22 Gurusamy Sarathy allow C<print v10>, $h{v13.10} etc.
2000-02-21 Gurusamy Sarathy remove dual-valueness of v-strings (i.e., they are...
2000-02-20 Gurusamy Sarathy lexical warnings update, ability to inspect bitmask...
2000-02-20 Gurusamy Sarathy default mkdir() mode argument to 0777
2000-02-19 Gurusamy Sarathy some rearrangement of the includes for easier "microper...
2000-02-19 Gurusamy Sarathy make comparisons promote to utf8 as necessary (from...
2000-02-15 Gurusamy Sarathy avoid accidental #line directives (from Rick Delaney
2000-02-15 Gurusamy Sarathy fix incompatibility with bison generated parser (from
2000-02-10 Gurusamy Sarathy longstanding bug in parsing "require VERSION", could...
2000-02-09 Charles Bailey Resync with mainline
2000-02-08 Jarkko Hietaniemi Integrate with Sarathy.
2000-02-07 Gurusamy Sarathy stringify "\x{FFF}" to utf8 correctly; set SvUTF8 on...
2000-02-06 Gurusamy Sarathy set SvUTF8 on vectors only if there are chars > 127...
2000-02-06 Gurusamy Sarathy fix parse error on C<{ use strict }> and other construc...
2000-02-06 Gurusamy Sarathy allow "\x{12ab}" even without C<use utf8>
2000-02-06 Gurusamy Sarathy support sprintf("v%v", v1.2.3) (works on any string...
2000-02-04 Gurusamy Sarathy fix pad_alloc panic from C<my $w; sub { my($i) = @_...
2000-02-01 Gurusamy Sarathy mark literal utf8 in string literals properly
2000-01-31 Gurusamy Sarathy runtime now looks at the SVf_UTF8 bit on the SV to...
2000-01-26 Gurusamy Sarathy revised attribute syntax: C<my $foo :a :b :c>, C<my...
2000-01-26 Gurusamy Sarathy s/STOP/CHECK/ blocks
2000-01-26 Gurusamy Sarathy change#3744 should have made grep more like map instead...
2000-01-26 Gurusamy Sarathy fix parse failure of (my $foo : bar) and similar (from...
2000-01-23 Gurusamy Sarathy disallow our($foo::bar)
2000-01-22 Gurusamy Sarathy #line directives without a filename leave the file...
2000-01-22 Gurusamy Sarathy add patch for printf-style format typechecks (from...
2000-01-20 Charles Bailey Quick integration of mainline changes to date
2000-01-14 Gurusamy Sarathy nailed "our" declarations, and better warnings on duplicate
1999-12-30 Gurusamy Sarathy leave DATA open in binmode if __END__ line doesn't...
1999-12-30 Gurusamy Sarathy enable the PERL_BINMODE_SCRIPTS behavior by default...
1999-12-30 Gurusamy Sarathy CR-LF support broken for formats
1999-12-28 Gurusamy Sarathy typecasts needed
1999-12-26 Gurusamy Sarathy fix typos
1999-12-24 Gurusamy Sarathy support for v5.5.640 style version numbers
1999-12-18 Gurusamy Sarathy fix from Larry for parsing C<{ 0x1 => 'foo'}> as an
1999-12-12 Gurusamy Sarathy integrate mainline changes
1999-12-09 Gurusamy Sarathy avoid mismatched expectation <-> int types for C++...
1999-12-08 Larry Wall patch to fix parser bug in C<${h{${a[0]}}} = 13>
1999-12-08 Gurusamy Sarathy use SAVEINT() rather than SAVEDESTRUCTOR() for saving...
1999-12-08 Gurusamy Sarathy longstanding typo in lexer: PL_lex_expect was not properly
1999-12-04 Gurusamy Sarathy make weak keyword check look for defined(&lock), not
1999-12-01 Gurusamy Sarathy more complete pseudo-fork() support for Windows
1999-11-14 Gurusamy Sarathy sundry cleanups for cloned interpreters (only known...
1999-11-11 Gurusamy Sarathy another change towards a shareable optree: avoid pointe...
1999-11-09 Gurusamy Sarathy IoDIRP may be fake when used in source filters, mark...
1999-11-04 Jarkko Hietaniemi Integrate with Sarathy.
1999-11-04 Gurusamy Sarathy implement STOP blocks and fix compiler to use them...
1999-11-04 Jarkko Hietaniemi Integrate with Sarathy.
1999-11-04 Jarkko Hietaniemi Incremental Mac integration from Matthias.
1999-11-04 Gurusamy Sarathy remove VIRTUAL tag, PERL_OBJECT doesn't need it anymore
1999-11-02 Jarkko Hietaniemi Initial integration of the MacPerl changes form Matthias.
1999-11-01 Gurusamy Sarathy macros for COP.cop_filegv access
1999-10-26 Gurusamy Sarathy warnings and const violations identified by compiling...
1999-10-24 Gurusamy Sarathy remove unused interpreter globals
1999-10-12 Gurusamy Sarathy various cleanups
1999-10-10 Gurusamy Sarathy revert SAVEDESTRUCTOR() to accepting void(*)(void*...
1999-10-08 Larry Wall add suggested patch =~ s/NOTOP/OP_NOT/ with tests
1999-10-06 Gurusamy Sarathy integrate cfgperl contents into mainline
next