Ticket #354: tt354_cage.patch

File tt354_cage.patch, 1.2 KB (added by jimmy, 13 years ago)
  • NEWS

     
    6565  + Various code cleanups, consting, 64-bit incompatibilities and other bug fixes 
    6666 
    6767 
    68 New in January 2009 release (0.9.0) 
     68New in 0.9.0 
    6969- Implementation 
    7070  + Implemented bytecode annotations 
    7171  + Role composition is now aware of multi-subs 
  • src/pbc_disassemble.c

     
    138138 
    139139/* 
    140140 
    141 =item C<static void do_dis(PARROT_INTERP, outfile, int)> 
     141=item C<static void do_dis(PARROT_INTERP, outfile, options)> 
    142142 
    143143Do the disassembling. 
    144144 
  • t/codingstd/copyright.t

     
    4343my @files = @ARGV ? <@ARGV> : @all_files; 
    4444my ( @no_copyright_files, @bad_format_copyright_files ); 
    4545 
    46 my @gmtime       = gmtime(time); 
    47 my $current_year = $gmtime[5] + 1900; 
    4846my $copyright_text = 
    4947    "Copyright \\(C\\) (\\d{4}\\-\\d{4}|\\d{4}), Parrot Foundation."; 
    5048