[perl #54762] [PATCH] bring README up to date.

2008-05-25 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #54762] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=54762 Attached patch updates README in languages/perl6/: * updated/add description of

[perl #54766] [PATCH] Slightly refactored 'Str.pir'

2008-05-25 Thread via RT
# New Ticket Created by Vasily Chekalkin # Please include the string: [perl #54766] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=54766 Hello. Implementation for Str.substr method with correct handling of negative

[perl #54780] [PATCH] 2 cygwin improvements by Ronald Schmidt

2008-05-25 Thread via RT
# New Ticket Created by Reini Urban # Please include the string: [perl #54780] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=54780 cygwin patch by Ronald Schmidt, checked ok by Reini Urban. 1. Doc patch to mention

Re: I need Windows OpenGL headers for study/testing

2008-05-25 Thread Ron Blaschke
Hi Geoffrey, I managed to get the Fexamples/opengl/triangle.pir running on Windows XP SP3, VC++ 9.0, using Parrot r27789. There are glitches involved, though. I'll just explain what I did. First I checked the OpenGL install on my box. I have the Windows SDK for Windows Server 2008 and

[perl #53602] remove or convert tools/docs/search-ops.py

2008-05-25 Thread James Keenan via RT
On Thu May 01 17:29:58 2008, [EMAIL PROTECTED] wrote: I believe that you give it the name of an opcode, and it tells you which src/ops/*.ops file contains it and any documentation for that opcode. I'd use it, if it worked. It does work, but only when called from the directory in which

Re: [perl #54602] [PATCH] Several changes to allow C++ compiling

2008-05-25 Thread chromatic
On Sunday 25 May 2008 02:31:44 François Perrad wrote: on Windows, since r27785, the command 'make hello' can't link. Info: resolving _op_jit by linking to __imp__op_jit (auto-import) src\exec_start.o: In function `emit_disp8_32': D:/fperrad/Parrot/trunk/src/jit_emit.h:171: undefined

Re: [perl #54602] [PATCH] Several changes to allow C++ compiling

2008-05-25 Thread François Perrad
2008/5/24 chromatic [EMAIL PROTECTED]: On Friday 23 May 2008 04:06:45 NotFound wrote: Looking better at the Parrot_exec_rel_... vars, they are not intended to be exported at all, they are globals for private usage between exec and jit, so they don't need the API or DATA things. This patch

[perl #54806] explicitly quoted argument key used as a named (instead of a positional) argument when called with parens

2008-05-25 Thread via RT
# New Ticket Created by diakopter # Please include the string: [perl #54806] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=54806 rakudo: 13:07:48 diakopter rakudo: sub foo(:$w=4){say $w};foo('w'=3);foo(w=3);

[perl #54804] multiple commas in argument list parse as a single comma

2008-05-25 Thread via RT
# New Ticket Created by diakopter # Please include the string: [perl #54804] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=54804 whereas perl5 and pugs both give syntax error. rakudo: sub foo($v, $w?, $x?, $y?){

[perl #54810] named argument treated as positional, in addition to the named *parameter* being treated as positional.

2008-05-25 Thread via RT
# New Ticket Created by diakopter # Please include the string: [perl #54810] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=54810 14:12:49 diakopter rakudo: sub foo(:$w=4){say $w.perl}; my %z=:x(7); foo(%z); # I

[perl #54802] extra positional arguments supplant named arguments

2008-05-25 Thread via RT
# New Ticket Created by diakopter # Please include the string: [perl #54802] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=54802 sub foo($w, $x?, $y?, :$z = 2){ say $w~|~$x~|~$y~|~$z};

[perl #54812] superfluous named arguments don't throw a fatal error

2008-05-25 Thread via RT
# New Ticket Created by diakopter # Please include the string: [perl #54812] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=54812 14:24:21 diakopter rakudo: sub foo($a?=4){say $a.perl}; my %f=:a(7); foo(:%f);

[perl #54808] named argument key pair parsed as a positional Pair argument when called without parens

2008-05-25 Thread via RT
# New Ticket Created by diakopter # Please include the string: [perl #54808] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=54808 named argument key pair parsed as a Pair argument (incorrectly), and vice versa

[perl #54796] There's no way to do .elems on a List of positional captures, because internals are poking out of the Match

2008-05-25 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #54796] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=54796 The following run shows how the fact that a list of captured positionals barfs on an

[perl #52214] [BUG] [PATCH]: Lipo poses problems when building Parrot on Darwin with Apple-built Perl 5.8

2008-05-25 Thread James Keenan via RT
On Sun May 25 13:15:10 2008, tetragon wrote: And here's a newer version of the patch that I use. This one changes config/init/hints/darwin.pm instead of config/init/defaults.pm This worked for me on Mac OS X 10.4 on ppc. Given what we've experienced, I'd like to verify that it also works on

[perl #54800] ignoring named arguments if there is an optional positional argument missing

2008-05-25 Thread via RT
# New Ticket Created by diakopter # Please include the string: [perl #54800] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=54800 rakudo is currently ignoring named arguments if there is an optional positional