This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Added note about directories not being created with File::Copy::copy
[perl5.git] / toke.c
2013-09-16 Father ChrysostomosRemove OPpCONST_FOLDED
2013-09-15 Father ChrysostomosReduce false positives for @hsh{$s} and @ary[$s] warnings
2013-09-13 Father ChrysostomosFewer false positives for %hash{$scalar} warning
2013-09-13 Ruslan Zakirovindex/value array slice operation
2013-09-13 Ruslan Zakirovscalar value %x{'a'} better written as $x{'a'}
2013-09-11 Karl WilliamsonUse separate macros for byte vs uv Unicode
2013-09-10 Brian Frasertoke.c: "Unrecognized character" error shouldn't leak...
2013-09-10 David LeadbeaterUse PERL_INT_MAX, this works in microperl
2013-09-09 Father ChrysostomosFix buffer overflow with overlong identifiers
2013-09-09 Father ChrysostomosFix assertion failure with -DT -e\"
2013-09-08 Father ChrysostomosFix line numbers with #! -d:foo and PERL5DB=$'\n'
2013-09-08 Father ChrysostomosMove herelines out of the lex_shared struct
2013-09-08 Father ChrysostomosRespect #line directives in here-docs
2013-09-08 Father ChrysostomosFix line numbers in <<foo,<<bar
2013-09-08 Father Chrysostomostoke.c: In sublex_push use multi_close to detect here-doc
2013-09-02 Karl Williamsontoke.c: Clarify comment
2013-09-01 Father Chrysostomostoke.c:scan_const: Don’t use PL_bufptr
2013-09-01 Father ChrysostomosFix debugger lines with keyword <newline> =>
2013-09-01 Father ChrysostomosFix two line numbers bugs involving quote-like ops
2013-09-01 Father Chrysostomostoke.c: Reorder checks around deprecate_escaped_meta
2013-08-29 Karl Williamsontoke.c: Fix EBCDIC bugs with single char variable names
2013-08-29 Karl Williamsontoke.c: An EBCDIC fix
2013-08-29 Karl Williamsontoke.c: Simplify some code
2013-08-29 Karl Williamsontoke.c: Remove EBCDIC dependency
2013-08-29 Karl Williamsontoke.c: Remove character set dependency
2013-08-29 Karl WilliamsonAdd macro OFFUNISKIP
2013-08-29 Karl Williamsontoke.c: white space only
2013-08-29 Karl Williamsontoke.c: Don't remap \N{} for EBCDIC
2013-08-29 Karl WilliamsonConvert some uvuni() to uvchr()
2013-08-29 Karl WilliamsonDeprecate NATIVE_TO_NEED and ASCII_TO_NEED
2013-08-29 Karl WilliamsonRemove remaining calls of NATIVE_TO_NEED
2013-08-29 Karl Williamsontoke.c: Remove some NATIVE_TO_NEED calls
2013-08-29 Karl Williamsontoke.c: Emphasize that only [A-Za-z] is used here
2013-08-29 Karl WilliamsonUse real illegal UTF-8 byte
2013-08-29 Karl Williamsontoke.c: Remove remapping for EBCDIC for octal
2013-08-29 Karl WilliamsonAdd and use macro to return EBCDIC
2013-08-29 Karl WilliamsonFix some EBCDIC problems
2013-08-29 Karl WilliamsonExtract common code to an inline function
2013-08-29 Karl WilliamsonDon't use EBCDIC macro for a C language escape
2013-08-29 Karl WilliamsonUse new clearer named #defines
2013-08-25 Father Chrysostomostoke.c:scan_str: Document args in one spot
2013-08-25 Father ChrysostomosMake __DATA__ use the right pkg
2013-08-25 Father ChrysostomosUse SSize_t for arrays
2013-08-23 Father Chrysostomostoke.c: Merge some mad and sane code
2013-08-23 Father Chrysostomostoke.c: Remove commented-out code
2013-08-23 Father ChrysostomosFix typo in bf1b738b; another line num bug
2013-08-23 Father Chrysostomos[perl #118931] Fix line number bug
2013-08-17 Lukas MaiFurther typo correction.
2013-08-17 James E KeenanFix typo in comment. mauke- ++.
2013-08-10 Father Chrysostomostoke.c:S_incline: avoid vivifying GV under threads
2013-08-10 Father ChrysostomosRevert "toke.c:incline: Avoid duplicate symbol lookup"
2013-08-05 Father Chrysostomostoke.c: s/below/above/
2013-08-05 Father Chrysostomostoke.c:incline: Avoid duplicate symbol lookup
2013-08-05 Father Chrysostomostoke.c:incline: Don’t stringify a GV to look it up
2013-08-05 Father ChrysostomosMake eval "#line" account for ${"_<foo"} changes
2013-08-05 Father Chrysostomostoke.c:incline: Move code into the block that uses it
2013-07-31 Karl WilliamsonPATCH: [perl #119101] Extraneous warnings in Parse...
2013-07-31 David MitchellHandle /[#]/ and /[(?#]/ with code blocks
2013-07-26 Father ChrysostomosInline list constants
2013-07-22 Nicholas ClarkAvoid read-after-free in S_scan_heredoc() if the termin...
2013-07-19 Niels Thykierop.c: Add op_folded to BASEOP
2013-07-19 Father Chrysostomostoke.c:yylex: assert that PL_linestr is not a COW
2013-07-17 Father ChrysostomosAllow => to quote built-in keywords across lines
2013-07-13 Peter Martini[perl #118567] Add a warning for prototypes if a missing
2013-07-13 Father ChrysostomosRevert "Allow => to quote built-in keywords across...
2013-07-13 Father ChrysostomosAllow => to quote built-in keywords across lines
2013-07-12 Father Chrysostomos[perl #118627] Don’t do COW when creating ${"_<-e"}[0]
2013-07-11 Peter MartiniSplit the handling for "Illegal character" and "Illegal...
2013-07-10 Peter Martini'Prototype after' and 'Illegal character' warnings...
2013-07-05 Peter MartiniIntroduce validate_proto / stop stripping spaces
2013-07-05 Tony Cookminor clean up of the refactoring of d6a4f4b531
2013-06-28 Father ChrysostomosReinstate UTF8f
2013-06-27 Father Chrysostomos[perl #117535, #76910] Fix bogus ambiguity warnings
2013-06-26 Karl WilliamsonRevert "Use UTF8f in more places"
2013-06-25 Peter MartiniRemove spaces from a (copy of) a proto when used. The...
2013-06-23 Father ChrysostomosUse UTF8f in more places
2013-06-23 Father Chrysostomostoke.c: Don’t depend on sv_force_normal’s good graces
2013-06-22 Peter MartiniTreat a consecutive semicolons in a prototype as 1
2013-06-14 Tony Cooktboffset hasn't been used since 7196fc2f
2013-06-11 Nicholas ClarkInline a subset of S_force_word() into the KEY_format...
2013-06-11 Brian Frasertoke.c: Remove the allow_initial_tick hack from S_force...
2013-06-11 Brian FraserEliminate the last call to S_force_word() passing allow...
2013-06-08 Father Chrysostomos[perl #24482] Fix sort and require to treat CORE::...
2013-06-02 Father Chrysostomos[perl #116735] Honour lexical prototypes when no parens...
2013-06-01 Father Chrysostomostoke.c: Under -DT, report pending idents more clearly
2013-05-27 Father ChrysostomosMake \N{ } deprecation warnings fatalizable
2013-05-27 Father ChrysostomosTurn \N{ } deprecation warnings on by default
2013-05-22 Nicholas ClarkAdd comments describing the operation of S_scan_ident().
2013-05-20 Karl Williamsontoke.c: Remove redundant test
2013-05-20 Brian Frasertoke.c: VALID_LEN_ONE_IDENT only needs a char, not...
2013-05-20 Brian Frasertoke.c, S_intuit_method: Minor parsing speedup for...
2013-05-20 Karl Williamsontoke.c: Call base macro that does the same thing
2013-05-09 David Mitchelltoke.c/MAD: silence a couple of warnings
2013-04-20 David MitchellHandle /@a/ array expansion within regex engine
2013-04-12 David Mitchellfix runtime /(?{})/ with overload::constant qr
2013-04-12 David Mitchelladd lex_re_reparsing boolean to yy_parser struct
2013-04-12 David MitchellEliminate PL_reg_state.re_reparsing, part 2
2013-04-12 David MitchellEliminate PL_reg_state.re_reparsing, part 1
2013-03-27 Brian FraserMake smartmatch, given & when experimental
2013-03-25 Nicholas ClarkIn In S_scan_heredoc(), avoid memNE() reading beyond...
next