This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
(perl #134221) support append mode for open .. undef
[perl5.git] / perly.c
2019-04-29 Karl Williamsonperly.c: Fix typo in comment
2017-02-13 Karl Williamsonperly.c: Clarify comment
2016-12-10 David Mitchellyyparse(): extend parser stack before every shift.
2016-12-07 David Mitchellperly.c: silence a -Wempty-body warning
2016-12-05 David Mitchellyyparse: only calculate yytoken on yychar change
2016-12-05 David Mitchellyyparse(): only check stack size in outer loop
2016-12-05 David Mitchellyyparse: reindent
2016-12-05 David Mitchellyyparse: replace yynewstate label with while(1) {}
2016-12-05 David Mitchellyyparse: eliminate yyreduce label
2016-12-05 David Mitchellyyparse: reindent
2016-12-05 David Mitchellyyparse: replace some gotos with a while(1) loop
2016-12-05 David Mitchelloptimising yyparse: avoid a < 0 check
2016-12-05 David Mitchelloptimising yyparse: replace stack_size with a ptr
2016-11-18 Karl WilliamsonChange white space to avoid C++ deprecation warning
2016-08-03 David Mitchellsub signatures: use parser rather than lexer
2016-02-03 David MitchellAdd support for bison 3.0
2015-09-17 Shlomi FishTentative fix for RT#125350 - AFL detected crash.
2015-03-23 Dagfinn Ilmari Man... Replace common Emacs file-local variables with dir...
2015-01-07 Father Chrysostomosperly.c: Emit nl after ‘Reading a token’
2014-12-09 Karl Williamsonperly.c: Fix EBCDIC bug
2014-12-03 Karl Williamsonperly.c: Fix off-by-1 error for EBCDIC platforms
2014-06-25 Jarkko HietaniemiRemove or downgrade unnecessary dVAR.
2014-06-13 Jarkko HietaniemiRemove MAD.
2014-06-12 Brian FraserSilence several -Wunused-parameter warnings about my_perl
2014-02-01 Zeframsubroutine signatures
2013-12-22 Dagfinn Ilmari Man... Remove support for "do SUBROUTINE(LIST)"
2013-08-29 Karl WilliamsonRemove EBCDIC remappings
2013-07-26 Father Chrysostomospad.c: Use &PL_sv_no for const pad names
2012-10-02 Father Chrysostomosperly.c: Disarm the YYDEBUG defines in perly.h
2012-09-26 Father ChrysostomosRestore perly.o build with -DDEBUGGING
2012-09-15 Father ChrysostomosPrevent assertion failure with ‘no a a 3’
2012-08-18 Karl WilliamsonOmnibus removal of register declarations
2012-07-15 Father ChrysostomosRemove op_latefree(d)
2012-05-30 Ricardo Signesupdate the editor hints for spaces, not tabs
2012-03-25 Brian FraserLabel UTF8 cleanup
2012-01-19 Steffen SchwigonBump several file copyright dates
2011-01-07 Peter J. Acklam... Fix typos (spelling errors) in Perl sources.
2010-09-06 Zeframfunction interface to parse Perl statement
2009-12-18 Gerard GoossenWhen discarding a token free the op associated with it
2009-12-16 Rafael Garcia-SuarezFix casting warnings
2009-12-16 Gerard GoossenStore the PL_compcv instead of the the PL_comppad in...
2008-10-25 Nicholas ClarkUpdate copyright years.
2008-02-25 Steve HaySilence Borland compiler warnings (except for warnings...
2007-07-16 Dave Mitchell [perl #43425] local $[: fix scoping during parser...
2007-04-01 Dave MitchellMake parser_free() be called slightly later,
2007-01-18 Dave Mitchelldisable parser stack cleanup on reduce croak (too fragile)
2007-01-07 Dave Mitchellsilence a warning in perly.c
2007-01-05 Steve HaySilence various VC6 warnings
2007-01-04 Dave Mitchellmake parser_free actually free the parser!
2007-01-03 Dave Mitchellhandle cloning of parsers on the save stack
2007-01-02 Nicholas ClarkUpdate copyright years to include 2007. (Plus a couple...
2007-01-02 Dave Mitchellfix -Mad build breakage
2007-01-02 Dave Mitchellmove easy lexer state variables into PL_parser
2007-01-01 Dave Mitchellsplit parser initialisation from parser execution
2007-01-01 Dave Mitchellsplit parser stack from parser object
2006-12-31 Jarkko Hietaniemismoke signs suppression
2006-12-29 Dave Mitchellfurther fix for #29543: fix parser leaks caused by...
2006-12-19 Dave Mitchellmake -Dpv print 8 parser stack items, not 9
2006-12-18 Dave Mitchellmove parser state into new parser object, PL_parser
2006-12-17 Dave Mitchellmerge the four parser stacks into one
2006-12-17 Dave Mitchelldelete dead code and macros from perly.c
2006-12-17 Dave Mitchellunify stacks arithmetic in parser
2006-12-16 Dave Mitchellfix a cast warning in perly.c
2006-12-13 Dave Mitchellmake -Dpv display the parser stack before reduction
2006-12-13 Dave Mitchellfix parser leaks caused by croaking while shifting...
2006-12-11 Dave Mitchellremove extraneous debugging code introduced by #29504
2006-12-11 Dave Mitchellfix eval qw(BEGIN{die}) style leaks (second attempt).
2006-12-10 Dave Mitchell#28315 could crash when freeing ops with different...
2006-12-10 Dave Mitchellparser: expand yy_is_opval[] to include all value types
2006-12-04 Dave Mitchellmerge perly.y and madlu.y
2006-12-03 Dave Mitchelladd support for bison 2.3
2006-12-03 Dave Mitchellmerge perly.c and madly.c
2006-12-02 Dave Mitchellsynchronise perly.c and madly.c
2006-08-15 Rafael Garcia-SuarezRevert change 28319, which may cause segfaults with...
2006-05-27 Dave Mitchellfix eval qw(BEGIN{die}) style leaks.
2006-05-27 Dave Mitchellmake -Dpv display OP names ons the parser stack
2006-05-27 Dave Mitchellstop OPs leaking in eval "syntax error"
2006-03-09 Nicholas ClarkAdd the madly parser. I believe that this is all the...
2006-03-08 Nicholas ClarkMake MAD at least compile and link once more. Although...
2006-03-08 Nicholas ClarkFurther MAD changes.
2006-02-17 Andy Lestercleaning up perly.c
2006-01-18 Steve HayChange all NEWSV() to newSV() in the core and non-dual...
2006-01-08 Nicholas ClarkUpdate copyright years (including some years where...
2006-01-06 Jarkko Hietaniemisprinkle dVAR
2005-07-12 Steve HayMissed a New() -> Newx().
2005-06-09 Andy Lesterregcomp.c and more
2005-06-02 Andy LesterQuotes fixed, see also perl #36079
2005-05-29 Craig A. BerryVMS build update for blead
2005-05-21 Steve PetersSvPVX_const - patch #2
2005-05-11 Rafael Garcia-SuarezInclude vim/emacs modelines in generated files to open...
2005-05-10 Rafael Garcia-SuarezAdd editor boilerplates to all C files
2005-04-13 Andy LesterRemoving yydestruct from perly.c
2005-04-13 Robin Barker-Wformat
2005-03-24 Andy LesterThird consting batch
2004-02-28 Dave Mitchellmake the bison-based parser threadsafe and capable...
2004-02-14 Craig A. BerryEnable v (verbose) switch on -Dp to display the top...
2004-02-14 Dave MitchellSwitch from byacc to bison and simplify the perly....
2003-12-27 Rafael Garcia-SuarezFix bug [perl #24762] : C<*foo{CODE} ? 1 : 0> was a...
2002-12-23 Hugo van der SandenReverse #18285, for reasons given in:
2002-12-11 Stephen McCamantRe: Precedence of ? :
next