This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix a signed/unsigned comparison warning
[perl5.git] / toke.c
2007-04-24 Dave Mitchellmove PL_linestr from the interpreter struct to the...
2007-04-24 Steve HaySilence 5 "possible loss of data" warnings from VC6
2007-04-21 Nicholas ClarkFix bug in change 31015 - saving the wrong size of...
2007-04-21 Nicholas ClarkSeveral members of struct yy_parser can go on a diet...
2007-04-20 Gerard GoossenRe: [PATCH] madprop about forced words
2007-04-06 Nicholas ClarkOnly append ?? match ops to the list used by reset...
2007-04-06 Gerard Goossenmadprop about forced words
2007-04-04 Yves OrtonRe: pmdynflags and thread safety
2007-04-03 Gerard GoossenRe: [PATCH] MAD disable constant inlining
2007-04-01 Dave MitchellMake parser_free() be called slightly later,
2007-04-01 Dave MitchellEliminate the use of PL_curforce outside of toke.c
2007-04-01 Dave MitchellEliminate the use of PL_bufend outside of toke.c:
2007-03-26 Rafael Garcia-SuarezMake the warning "interpreted as function" a bit less...
2007-03-26 Rafael Garcia-Suarezsay() should parse exactly like print()
2007-03-24 Rafael Garcia-SuarezMake sure readpipe without argument can be followed...
2007-03-15 Rick DelaneyRe: What is this MAD stuff all about?
2007-03-07 Rafael Garcia-SuarezUse another method to avoid the "possible interpolation...
2007-03-02 Nicholas ClarkAvoid an assertion failure when overloading readpipe.
2007-03-02 Nicholas ClarkMore assertion failures, found by auditing the code.
2007-02-28 Rafael Garcia-Suarez(?p{}) has been deprecated for a long time.
2007-02-24 Rafael Garcia-SuarezC<keys %+> should not warn. Don't make scan_ident test for
2007-02-18 Nicholas ClarkMore efficient to call newSV_type() then SvGROW() inste...
2007-02-18 Nicholas ClarkAdd a new API function newSV_type, to replace the idiom:
2007-02-12 Rick DelaneyRe: PL_copline inconsistency
2007-02-02 Nicholas ClarkA few more places where we know the length for sv_setpv...
2007-01-27 Nicholas ClarkOne last gv_fetchpv() that should be GV_ADD rather...
2007-01-27 Nicholas ClarkA test to exercise the smallbuf overflow code in S_incl...
2007-01-26 Nicholas ClarkStop S_incline needing to temporarily write a '\0'...
2007-01-26 Nicholas ClarkAs we're not passing over (or copying in) a NUL, don...
2007-01-25 Nicholas ClarkConvert the last remaining 256 byte "small"bufs to...
2007-01-25 Nicholas ClarkNeither gv_fetchpvn_flags() nor hv_fetch() need a NUL...
2007-01-25 Nicholas ClarkThe last parameter to gv_stashpv/gv_stashpvn/gv_stashsv...
2007-01-15 Rafael Garcia-SuarezEnable the ~~ operator by default.
2007-01-15 Yves OrtonRe: [PATCH] Add support for /k modfier for matching...
2007-01-15 Yves OrtonAdd support for /k modfier for matching along with...
2007-01-15 Nicholas ClarkAdd get_cvn_flags(), which is like get_cv() but takes...
2007-01-15 Jarkko Hietaniemig++ fixes
2007-01-11 Rafael Garcia-SuarezFix bug [perl #41234] : the tokenizer understands ...
2007-01-11 Nicholas ClarkIn toke.c, merge S_update_debugger_info_pv() and
2007-01-08 Dave Mitchellallocate op_pv strings from shared mem pool
2007-01-04 Marcus Holland-Moritz4th patch from:
2007-01-04 Dave Mitchellmake parser_free actually free the parser!
2007-01-02 Dave Mitchellremove conflict in pending_ident function and field...
2007-01-02 Dave Mitchellmove easy lexer state variables into PL_parser
2007-01-02 Steve PetersQuiet a smoke warning in toke.c and bump the copyright...
2007-01-01 Dave Mitchellsplit parser initialisation from parser execution
2006-12-31 Dave Mitchellin lex_start(), ensure that all lexer state vars are...
2006-12-31 Nicholas ClarkRationalise the logic in lex_start for creating a new...
2006-12-31 Nicholas ClarkAs freeing up PL_linestr is now done via the scope...
2006-12-31 Nicholas ClarkPL_linestr needs to survive until the end of scope...
2006-12-20 Rafael Garcia-SuarezFix leaks in label strings allocation in COPs
2006-12-18 Dave Mitchellmove parser state into new parser object, PL_parser
2006-12-13 Dave Mitchellmisc MAD coredump fixes and parser leak fixes
2006-12-01 Rafael Garcia-SuarezVerify that the debugger has an array where to store...
2006-11-13 Rafael Garcia-SuarezFix a bug in the debugger tracing variables when one...
2006-11-08 Dave Mitchell[perl #40718] perl parser bug leading to memory corruption
2006-11-02 Dave Mitchelleval $undef should emit one warning, not three.
2006-11-02 Rafael Garcia-Suarezsay() has the same syntax than print(), so forbid to...
2006-10-31 Rafael Garcia-SuarezSilence a warning and call readpipe_override() correctly.
2006-10-31 Rafael Garcia-SuarezMake S_readpipe_override() compile with threads; regene...
2006-10-31 Rafael Garcia-SuarezMake readpipe() overridable (and also `` and qx//)
2006-10-19 Alexander Goughstab at UNITCHECK blocks
2006-10-18 Rafael Garcia-SuarezFunctions with a (_) prototype should behave as unary...
2006-10-17 Rafael Garcia-SuarezFirst attempt at implementing the _ prototype
2006-10-17 Rafael Garcia-SuarezLess brace nesting.
2006-10-16 SADAHIRO Tomoyukiremove leaveit from toke.c:scan_const
2006-10-13 Jim CromieRe: SVpvs vs SVpvn
2006-10-13 Rafael Garcia-SuarezDon't bother checking for bad characters in prototypes...
2006-10-07 Yves OrtonRe: [PATCH] Initial attempt at named captures for perls...
2006-09-21 Jarkko Hietaniemideal with some gcc warnings
2006-09-20 Rafael Garcia-Suarezprototype() wasn't working to get the prototype of...
2006-09-19 Yves OrtonRe: \N{...} in regular expression [PATCH]
2006-09-07 Rafael Garcia-SuarezTypo fix in #ifdef
2006-08-09 Steve PetersA couple const's and a cast to get Sun CC to compile...
2006-08-07 Jarkko Hietaniemig++ large patch
2006-07-26 SADAHIRO Tomoyukiinterpolation of @- (and @+) in patterns ([perl #27940...
2006-07-23 Rafael Garcia-SuarezRevert part of last change, that was causing utf8 test...
2006-07-23 Jarkko Hietaniemiz/OS: pp_sys.c, reg*.c, toke.c, utf8.c
2006-07-15 SADAHIRO Tomoyukicomment update for scan_const
2006-07-11 Rafael Garcia-SuarezRevert bogus fix for bug #27940, which wasn't really...
2006-07-10 Steve PetersConvert some low hanging fruit to my_strlcpy/my_strlcat.
2006-07-04 Andy Lestertoke.c consting and localizing
2006-06-30 Rafael Garcia-SuarezFix a couple of compilation warnings
2006-06-21 Dr.Ruud<toke.c> isALNUM(*s) && *s != '_'
2006-06-20 Rafael Garcia-SuarezChange 28404 broke the construct s/foo/<<BAR/e. So...
2006-06-20 Ben Carter[perl #39365] Bug in toke.c (eval in subst)
2006-06-06 Andy LesterAccumulated toke.c cleanups
2006-05-12 Jarkko HietaniemiRe: [PATCH] my_snprintf
2006-05-12 Andy LesterProper use of static funcs in toke.c and pp_sys.c
2006-05-03 Rafael Garcia-SuarezAdd "state" feature
2006-05-03 Rafael Garcia-SuarezIntroduce a new keyword, state, for state variables.
2006-05-02 Jarkko Hietaniemitoke.c: function pointer to data pointer
2006-04-29 Jarkko Hietaniemimore -ansi -pedantic cleanliness
2006-04-28 Jarkko Hietaniemireduce gcc -ansi -pedantic noise plus a suggestion
2006-04-28 Jarkko HietaniemiRe: [PATCH] use snprintf/strlcpy/strlcat when useful
2006-04-26 Marcus Holland-MoritzRe: [PATCH] cleanup 212 warnings emitted by gcc-4.2
2006-04-24 Bas van Sisseren[perl #38475] attribute multiline fix (in tokenizer)
2006-04-24 Marcus Holland-MoritzCleanup some gcc warnings
2006-04-24 Marcus Holland-MoritzA couple of casts to PADOFFSET.
2006-04-19 Nicholas ClarkFix compilation of microperl, which doesn't have INT_MAX.
next