Re: new sigil

2005-10-21 Thread Stefan Lidman
> For me AltGr + C gives Copyright-symbol "(c)". For me too, but AltGr + shift + E gives ยข. /Stefan Lidman

Re: Lingering questions about Junctions.

2005-02-21 Thread Stefan Lidman
Junctions should be on or off by default, I prefer on. Having them half-on is bad. Because if it is half-on people(me) is going to write C< if $x == 3 | 5 | 7 { > in N places then have to change it and remember to change it in N-1 places. Oops. ON or OFF. On please. /Stefan Lidman

Downcase, upcase and titlecase

2004-04-29 Thread Stefan Lidman
Hi, These patches adds Downcase, upcase and titlecase but only works for [A-Za-z] so maybe they should not be added. /Stefan Index: ops/string.ops === RCS file: /cvs/public/parrot/ops/string.ops,v retrieving revision 1.22 diff -u -r

Segfault when setting size of a FloatvalArray

2004-04-29 Thread Stefan Lidman
Hi I am getting a segfault when trying to set the size of a FloatvalArray. see test patch /Stefan Index: t/pmc/floatvalarray.t === RCS file: /cvs/public/parrot/t/pmc/floatvalarray.t,v retrieving revision 1.1 diff -u -r1.1 floatvala

Re: sqrt

2004-04-27 Thread Stefan Lidman
>Everything is right, except... you forgot either the -c or -u switch >for the diff. (And no, I don't know why the default output from diffs >is mostly useless. Just one of those things, I expect) ok resend with -u switch. /Stefan Index: ops/math.ops ===

sqrt

2004-04-27 Thread Stefan Lidman
This adds a square root op and fixes a typo. It is also my first patch so I might have missed something, please tell me what I did wrong. /Stefan cvs server: Diffing ops Index: ops/math.ops === RCS file: /cvs/public/parrot/ops/math.o

Re: Another simple perl task

2004-04-08 Thread Stefan Lidman
>Here's something for someone who wants to dig in a bit and needs a >place to start. > >Many, but by no means all, of the ops are JITted right now. There's >code to mess about with the JITting in jit2h.pl. What would be nice >is if there was a way to get a list of the ops that are *not* JITted,

t/pmc/object-meths......NOK 17# Failed test (t/pmc/object-meths.t at line 466)

2004-04-08 Thread Stefan Lidman
Hi One test is currently failing for me, and I got the same error yesterday too. I am using Linux. /Stefan t/pmc/object-meths..NOK 17# Failed test (t/pmc/object-meths.t at line 466) # got: 'F isa D 1 # D isa F 0 # F isa C 1 # C isa F 0 # F isa E 1 # E isa F 0 # F isa A 1 # A isa

Re: compiling hangs at core_ops_cg.c

2004-04-01 Thread Stefan Lidman
>hi, > >I have trouble compiling the current distribution of parrot. >I checked it out from cvs, that didn't work, so I decided to download a >snapshot (latest, 31/3). > >Compiling on my winXP computer is going ok (P3/450mhz), but while >compiling on my linux >server (amd k6-2/233 mhz), it hangs

Re: Help me please

2003-10-15 Thread Stefan Lidman
>Shannon Francis <[EMAIL PROTECTED]> writes: > >[...] > >Oh dear. > >Asking a mailing list to do your homework for you is bad >enough. Asking a mailing list that has recently been quiet enough to >elicit jokes about it in the summaries is, well, we'll have to see >what sort of mood I'm in when I w

Re: The Block Returns

2003-10-02 Thread Stefan Lidman
So, I must ask, what does this do: >sub foo() { >return my $self = { >print "Block"; >return $self; >} >} >my $block = foo; # = sub {print "Block"; return $self;} A6: One obvious difference is that the sub on closures is now op