Reini Urban wrote:
> Moritz Lenz schrieb:
>> Reini Urban wrote:
>>> My latest patch against the cygwin070patches branch r30596.
>>
>> applied as 30597
>
> Thanks!
> And one more.
Applied as 30599, as far as it would.
Moritz
--
Moritz Lenz
http://moritz.faui2k3.org/ | http://perl-6.de/
Moritz Lenz schrieb:
Reini Urban wrote:
My latest patch against the cygwin070patches branch r30596.
applied as 30597
Thanks!
And one more.
Add docs/pdds/draft/pdd30_install.pod
Fix bf and tcl makefiles
--
Reini Urban
http://phpwiki.org/ http://murbreak.at/
Index: docs/pdds/draft/pdd30_ins
Reini Urban wrote:
> My latest patch against the cygwin070patches branch r30596.
applied as 30597
Moritz
--
Moritz Lenz
http://moritz.faui2k3.org/ | http://perl-6.de/
My latest patch against the cygwin070patches branch r30596.
* Finished implementation of the makefile expansion - "perl-style"
* Changed all relevant makefile templates.
make fulltest and make codetest has the same few mt-thread and resume
errors as always.
A new idea:
===
#IF(darwin)
On my OpenSuse, it looks like this:
auto::aio - Does your platform support AIO...wrong signal
..done.
So the fact that it exits the loop early, just makes it continue to the "wrong
signal" indication, and that marks it as not supported. After all it did not
meet the te
Carl MXXsak (via RT) wrote:
> r30589:
> $ cat for-loop-recursion.bug
> sub f($l) {
> return() if $l <= 0;
> say "entering $l";
> for 1..3 {
> f($l-1);
> say "looping in $l";
> }
> }
> f(2);
I re-worked that as a test and added it to t/spec/S04-statements/for.t
Moritz
-
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #58396]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=58396 >
r30590:
$ ./perl6 -e 'sub testa { return 5 }; if testa() -> $a { say $a }'
Statement not
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #58392]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=58392 >
r30589:
$ cat for-loop-recursion.bug
sub f($l) {
return() if $l <= 0;
say "enter
# New Ticket Created by "Stephen Simmons"
# Please include the string: [perl #58388]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=58388 >
my Num $x = 3;
causes a typecheck failure, whereas:
my Num $x = 3.0;
succeeds.
I
Done in r30574
Patrick R. Michaud wrote:
> On Mon, Aug 25, 2008 at 12:15:05AM +0200, Moritz Lenz wrote:
>> Larry Wall wrote:
>> > I think it would be best if all boolean contexts collapse consistently,
>> > and I would consider all of those to be boolean contexts. More
>> > precisely, && and || are boolean on th
Hello,
it tried the patch in the file 58354-installable_parrot_config.patch
under Fedora 7. It works fine.
[EMAIL PROTECTED] ~]$ /Anwendungen/gz016/parrot-0.7.0/bin/parrot_config
prefix
/Anwendungen/gz016/parrot-0.7.0
[EMAIL PROTECTED] ~]$
By applying this patch the two lines with the word "parr
Hello.
The current grammar for ATTR in pmc2c allows declarations of the form:
* varname
In the perl6multisub pmc we have the attribute candidates_sorted whose
intended type is candidate_info **, having two problems:
The current grammar allows a single pointer, not a pointer to a
pointer. This c
13 matches
Mail list logo