[svn:perl6-synopsis] r9050 - doc/trunk/design/syn

2006-05-01 Thread autrijus
Author: autrijus Date: Mon May 1 01:31:24 2006 New Revision: 9050 Modified: doc/trunk/design/syn/S02.pod Log: * S02: even more long dot fixes. Modified: doc/trunk/design/syn/S02.pod == --- doc/trunk/design/syn/S02.po

[svn:perl6-synopsis] r9051 - doc/trunk/design/syn

2006-05-01 Thread autrijus
Author: autrijus Date: Mon May 1 01:33:08 2006 New Revision: 9051 Modified: doc/trunk/design/syn/S04.pod Log: * S04: minor typo cleanup. * S04: Document a consequence caused by the statement-terminating end-of-line block rule: # Without the trailing comma, this becomes a code bloc

[svn:perl6-synopsis] r9052 - doc/trunk/design/syn

2006-05-01 Thread autrijus
Author: autrijus Date: Mon May 1 01:35:22 2006 New Revision: 9052 Modified: doc/trunk/design/syn/S12.pod Log: * S12: The example @array.=sort is better written as @array .= sort as it's not impossible for "=sort" to be a postfix operator on its own. Modified: doc/trunk/design/s

Re: error building pugs: "Could not find module `Data.ByteString'"

2006-05-01 Thread Dave Whipp
Dave Whipp wrote: Could not find module `Data.ByteString': I updated to r10166: Audrey's update to third-party/fps/... fixed my problem. Thanks. Dave.

Re: A shorter long dot

2006-05-01 Thread Smylers
Jonathan Lang writes: > Larry Wall wrote: > > > I don't see much downside to \. as a long dot. > > The only remaining problem that I see for the long dot is largely > orthogonal to the selection of the first and last characters - namely, > that your only choice for filler is whitespace. Why's t

[perl #39043] [TODO] Dynamic PMCs should not include 'parrot/parrot.h'

2006-05-01 Thread via RT
# New Ticket Created by Bernhard Schmalhofer # Please include the string: [perl #39043] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=39043 > In 'include/parrot/parrot.h' it quite sensibly says: /* Only parrot core files

Re: [perl #39038] [BUG] linker failure with dynpmc on win32

2006-05-01 Thread jerry gay
after 13473 (bernhard++ for trying) building parrot now fails during src/platform.c src\platform.c platform.c config\gen\platform\generic\math.c(15) : error C2375: 'Parrot_signbit' : redefinition; different linkage include\parrot\platform_interface.h(16) : see declaration of 'Parrot_signbi

Re: A shorter long dot

2006-05-01 Thread Dr.Ruud
"Jonathan Lang" schreef: > When is the last time that you saw an underscore-only method name? sub _{print"$_\n"}; -- Affijn, Ruud "Gewoon is een tijger."

[svn:perl6-synopsis] r9069 - doc/trunk/design/syn

2006-05-01 Thread autrijus
Author: autrijus Date: Mon May 1 08:43:47 2006 New Revision: 9069 Modified: doc/trunk/design/syn/S03.pod Log: * S03: Correct the perl5ish "map" example to have an extra comma. 17:44 < TimToady> audreyt: foo {...} 1,2,3 is wrong, needs a comma. Modified: doc/trunk/design/syn/S03.pod ===

[svn:perl6-synopsis] r9071 - doc/trunk/design/syn

2006-05-01 Thread autrijus
Author: autrijus Date: Mon May 1 09:18:16 2006 New Revision: 9071 Modified: doc/trunk/design/syn/S06.pod Log: * S06: Add Whatever to the list of "Undefined types". Modified: doc/trunk/design/syn/S06.pod == --- doc/tr

[svn:perl6-synopsis] r9076 - doc/trunk/design/syn

2006-05-01 Thread autrijus
Author: autrijus Date: Mon May 1 10:32:02 2006 New Revision: 9076 Modified: doc/trunk/design/syn/S03.pod Log: * S03.pod: Retire lvalue undef and replace it with lvalue Whatever: # Perl 5 (undef, undef, $x) = (1,2,3); # Perl 6 (*, *, $x) = (1,2,3); Modified: doc/trunk/design

[perl #38931] [RFE] Double-quoted strings automatically determine string type

2006-05-01 Thread Patrick R. Michaud via RT
FWIW, I'm retracting this particular RFE (and closing the ticket). I've since decided it's better to have things the way they are now. Pm

[perl #39044] Problem with :slurpy, :slurpy :named, :flat :named

2006-05-01 Thread via RT
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #39044] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=39044 > --- osname= linux osvers= 2.6.12 arch= x86_64-linux-thread-multi cc= cc --

[perl #39045] [BUG] "isa" opcode doesn't (yet) work with keyed classnames

2006-05-01 Thread via RT
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #39045] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=39045 > --- osname= linux osvers= 2.6.12 arch= x86_64-linux-thread-multi cc= cc --

error messages now with file name and line number

2006-05-01 Thread Stéphane Payrard
..with same format as gcc and grep. It is used by compiler-mode in emacs for example. $ diff -u compilers/imcc/debug.c.old compilers/imcc/debug.c --- compilers/imcc/debug.c.old 2006-05-01 20:44:34.0 +0200 +++ compilers/imcc/debug.c 2006-05-02 00:03:03.0 +0200 @@ -11,7 +11,8

Re: A shorter long dot

2006-05-01 Thread Paul Johnson
On Mon, May 01, 2006 at 01:15:58PM +0100, Smylers wrote: > Jonathan Lang writes: > > > Larry Wall wrote: > > > > > I don't see much downside to \. as a long dot. > Folks want to be able to line stuff up, and to split statements over > multiple lines. This is now possible. You know, I'm still

Re: [svn:perl6-synopsis] r9076 - doc/trunk/design/syn

2006-05-01 Thread james
On Mon, May 01, 2006 at 10:32:02AM -0700, [EMAIL PROTECTED] wrote: > Log: > * S03.pod: Retire lvalue undef and replace it with lvalue Whatever: > > # Perl 5 > (undef, undef, $x) = (1,2,3); > > # Perl 6 > (*, *, $x) = (1,2,3); Is my ($foo, *, $bar) = 1..3 legal perl6? my ($foo, u

Parrot Bug Summary

2006-05-01 Thread Parrot Bug Summary
Parrot Bug Summary http://rt.perl.org/rt3/NoAuth/parrot/Overview.html Generated at Mon May 1 13:15:03 2006 GMT --- * Numbers * New Issues * Overview of Open Issues * Ticket Status By Version * Requestors with mo

[svn:perl6-synopsis] r9091 - doc/trunk/design/syn

2006-05-01 Thread larry
Author: larry Date: Mon May 1 17:13:17 2006 New Revision: 9091 Modified: doc/trunk/design/syn/S03.pod Log: Explained why any has to be different from any . Modified: doc/trunk/design/syn/S03.pod == --- doc/trunk/des

[svn:perl6-synopsis] r9096 - doc/trunk/design/syn

2006-05-01 Thread larry
Author: larry Date: Mon May 1 22:36:54 2006 New Revision: 9096 Modified: doc/trunk/design/syn/S02.pod Log: Refined some notions about how we want to support numerics long term. Modified: doc/trunk/design/syn/S02.pod ===