| Commit message (Expand) | Author | Age | Files | Lines |
* | support for version vectors in UNIVERSAL::VERSION(), so that | Gurusamy Sarathy | 2000-02-26 | 1 | -3/+28 |
* | per Larry's idea, parse 1.2.3 as v1.2.3; C<require 5.6.0> and | Gurusamy Sarathy | 2000-02-23 | 1 | -10/+30 |
* | change#5205 wasn't quite right; SvCUR() should be SvLEN() | Gurusamy Sarathy | 2000-02-22 | 1 | -2/+2 |
* | fix memory overrun due to off-by-one in change#5192 | Gurusamy Sarathy | 2000-02-22 | 1 | -2/+2 |
* | improvements for high-bit text literals (from Gisle Aas) | Gurusamy Sarathy | 2000-02-22 | 1 | -41/+69 |
* | allow C<print v10>, $h{v13.10} etc. | Gurusamy Sarathy | 2000-02-22 | 1 | -23/+25 |
* | remove dual-valueness of v-strings (i.e., they are pure strings | Gurusamy Sarathy | 2000-02-21 | 1 | -12/+13 |
* | lexical warnings update, ability to inspect bitmask in calling | Gurusamy Sarathy | 2000-02-20 | 1 | -13/+13 |
* | default mkdir() mode argument to 0777 | Gurusamy Sarathy | 2000-02-20 | 1 | -1/+1 |
* | some rearrangement of the includes for easier "microperl" build; | Gurusamy Sarathy | 2000-02-19 | 1 | -7/+0 |
* | make comparisons promote to utf8 as necessary (from Gisle Aas) | Gurusamy Sarathy | 2000-02-19 | 1 | -4/+4 |
* | avoid accidental #line directives (from Rick Delaney | Gurusamy Sarathy | 2000-02-15 | 1 | -8/+19 |
* | fix incompatibility with bison generated parser (from | Gurusamy Sarathy | 2000-02-15 | 1 | -0/+5 |
* | longstanding bug in parsing "require VERSION", could reallocate | Gurusamy Sarathy | 2000-02-10 | 1 | -1/+1 |
* | stringify "\x{FFF}" to utf8 correctly; set SvUTF8 on "\x{XX}" | Gurusamy Sarathy | 2000-02-07 | 1 | -3/+9 |
* | set SvUTF8 on vectors only if there are chars > 127; update copyright | Gurusamy Sarathy | 2000-02-06 | 1 | -3/+13 |
* | fix parse error on C<{ use strict }> and other constructs that | Gurusamy Sarathy | 2000-02-06 | 1 | -0/+9 |
* | allow "\x{12ab}" even without C<use utf8> | Gurusamy Sarathy | 2000-02-06 | 1 | -6/+0 |
* | support sprintf("v%v", v1.2.3) (works on any string argument, in | Gurusamy Sarathy | 2000-02-06 | 1 | -1/+5 |
* | fix pad_alloc panic from C<my $w; sub { my($i) = @_; sub { $w } }> | Gurusamy Sarathy | 2000-02-04 | 1 | -2/+1 |
* | mark literal utf8 in string literals properly | Gurusamy Sarathy | 2000-02-01 | 1 | -1/+15 |
* | runtime now looks at the SVf_UTF8 bit on the SV to decide | Gurusamy Sarathy | 2000-01-31 | 1 | -51/+49 |
* | revised attribute syntax: C<my $foo :a :b :c>, C<my $foo : a b c> | Gurusamy Sarathy | 2000-01-26 | 1 | -1/+3 |
* | s/STOP/CHECK/ blocks | Gurusamy Sarathy | 2000-01-26 | 1 | -5/+3 |
* | change#3744 should have made grep more like map instead of the | Gurusamy Sarathy | 2000-01-26 | 1 | -2/+2 |
* | fix parse failure of (my $foo : bar) and similar (from Spider | Gurusamy Sarathy | 2000-01-26 | 1 | -2/+18 |
* | disallow our($foo::bar) | Gurusamy Sarathy | 2000-01-23 | 1 | -0/+4 |
* | #line directives without a filename leave the file name as it was | Gurusamy Sarathy | 2000-01-22 | 1 | -2/+0 |
* | add patch for printf-style format typechecks (from Robin Barker | Gurusamy Sarathy | 2000-01-22 | 1 | -2/+2 |
* | nailed "our" declarations, and better warnings on duplicate | Gurusamy Sarathy | 2000-01-14 | 1 | -5/+9 |
* | leave DATA open in binmode if __END__ line doesn't have CRLF | Gurusamy Sarathy | 1999-12-30 | 1 | -1/+3 |
* | enable the PERL_BINMODE_SCRIPTS behavior by default on Windows | Gurusamy Sarathy | 1999-12-30 | 1 | -8/+49 |
* | CR-LF support broken for formats | Gurusamy Sarathy | 1999-12-30 | 1 | -0/+8 |
* | typecasts needed | Gurusamy Sarathy | 1999-12-28 | 1 | -2/+2 |
* | fix typos | Gurusamy Sarathy | 1999-12-26 | 1 | -1/+1 |
* | support for v5.5.640 style version numbers | Gurusamy Sarathy | 1999-12-24 | 1 | -20/+87 |
* | fix from Larry for parsing C<{ 0x1 => 'foo'}> as an | Gurusamy Sarathy | 1999-12-18 | 1 | -3/+6 |
* | avoid mismatched expectation <-> int types for C++ builds | Gurusamy Sarathy | 1999-12-09 | 1 | -2/+2 |
* | patch to fix parser bug in C<${h{${a[0]}}} = 13> | Larry Wall | 1999-12-08 | 1 | -12/+8 |
* | use SAVEINT() rather than SAVEDESTRUCTOR() for saving PL_expect etc. | Gurusamy Sarathy | 1999-12-08 | 1 | -30/+2 |
* | longstanding typo in lexer: PL_lex_expect was not properly | Gurusamy Sarathy | 1999-12-08 | 1 | -1/+1 |
* | make weak keyword check look for defined(&lock), not | Gurusamy Sarathy | 1999-12-04 | 1 | -0/+1 |
* | more complete pseudo-fork() support for Windows | Gurusamy Sarathy | 1999-12-01 | 1 | -4/+4 |
* | sundry cleanups for cloned interpreters (only known failure mode | Gurusamy Sarathy | 1999-11-14 | 1 | -4/+4 |
* | another change towards a shareable optree: avoid pointer to filegv | Gurusamy Sarathy | 1999-11-11 | 1 | -47/+47 |
* | IoDIRP may be fake when used in source filters, mark as such | Gurusamy Sarathy | 1999-11-09 | 1 | -3/+8 |
* | implement STOP blocks and fix compiler to use them (minimally | Gurusamy Sarathy | 1999-11-04 | 1 | -0/+4 |
* | remove VIRTUAL tag, PERL_OBJECT doesn't need it anymore | Gurusamy Sarathy | 1999-11-04 | 1 | -1/+0 |
* | macros for COP.cop_filegv access | Gurusamy Sarathy | 1999-11-01 | 1 | -13/+11 |
* | warnings and const violations identified by compiling in C++ mode | Gurusamy Sarathy | 1999-10-26 | 1 | -6/+7 |