Re: [perl #121798] m:ov and m:ex multiple regex matches not working

2014-05-04 Thread Tobias Leich
Am 04.05.2014 23:22, schrieb schw...@rt.perl.org: > # New Ticket Created by Schwenn, Peter > # Please include the string: [perl #121798] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=121798 > > > > Dear Perl6'ers, > > I am

[perl6/specs] 6499b5: Rename first-rindex to last-index

2014-05-04 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 6499b5c2e6146a8282ae141afa3b7343dc108a40 https://github.com/perl6/specs/commit/6499b5c2e6146a8282ae141afa3b7343dc108a40 Author: Elizabeth Mattijsen Date: 2014-05-04 (Sun, 04 May 2014) Changed paths:

[perl #121798] m:ov and m:ex multiple regex matches not working

2014-05-04 Thread via RT
# New Ticket Created by Schwenn, Peter # Please include the string: [perl #121798] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=121798 > Dear Perl6'ers, I am using 2014.3 Star’s MSI to build a production translator (updatin

[perl6/specs] dc55e2: Fix syntax of example <* < foo bar baz > >

2014-05-04 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: dc55e28c9142395e59dcea1815226a6c8dd1d686 https://github.com/perl6/specs/commit/dc55e28c9142395e59dcea1815226a6c8dd1d686 Author: Tim Smith Date: 2014-05-04 (Sun, 04 May 2014) Changed paths: M S05-rege

[perl6/specs] 9878e9: Fix uniq () glitch

2014-05-04 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 9878e9ae0d1f5d0a03ac4d84e94128b7e3ff3e3f https://github.com/perl6/specs/commit/9878e9ae0d1f5d0a03ac4d84e94128b7e3ff3e3f Author: Elizabeth Mattijsen Date: 2014-05-04 (Sun, 04 May 2014) Changed paths:

[perl6/specs] 6f87cb: s/Cs/Supplies

2014-05-04 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 6f87cb52c3763c7764cf2613d3f97a3e188cfed3 https://github.com/perl6/specs/commit/6f87cb52c3763c7764cf2613d3f97a3e188cfed3 Author: Elizabeth Mattijsen Date: 2014-05-04 (Sun, 04 May 2014) Changed paths:

[perl6/specs] 419d76: Spec Supply.(sort|reverse)

2014-05-04 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 419d76011aa50d0a1cf4ae6a84225a4ea20f864f https://github.com/perl6/specs/commit/419d76011aa50d0a1cf4ae6a84225a4ea20f864f Author: Elizabeth Mattijsen Date: 2014-05-04 (Sun, 04 May 2014) Changed paths:

gcc __alignof__() surprise

2014-05-04 Thread Nicholas Clark
Just for the record: $ cat sizer.c #include int main() { printf(" sizeof(long long) = %2u __alignof__(long long) = %2u\n", (unsigned) sizeof(long long), (unsigned) __alignof__(long long)); printf(" sizeof(struct {long long N;}) = %2u __alignof__(struc

(Rakudo 2014.04) 'item %h' working differently between REPL and interpreter?

2014-05-04 Thread Philip Hazelden
Hi, I'm trying to create a one-element array containing a hash. I eventually managed to do this from the REPL, but when I create a script containing the same commands, it doesn't work. $ cat test.p6 my %h = (y => 1, x => 1); say [item %h].elems; say [item %h][0].WHAT; $ perl6