[perl #126292] [BUG] feeds don't correctly append to an argument list anymore

2015-10-08 Thread via RT
# New Ticket Created by Larry Wall # Please include the string: [perl #126292] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126292 > > p6 'say map { $_ * 2 } <== 1 ... 10' ()(1 2 3 4 5 6 7 8 9 10) > p6 'say map { $_ * 2 },0

[perl #126292] [BUG] feeds don't correctly append to an argument list anymore

2015-10-08 Thread Larry Wall via RT
Whoops, posted the wrong examples. These actually show the difficulty: > p6 'say() <== map { $_ * 2 } <== 1...10' (2 4 6 8 10 12 14 16 18 20) > p6 'say() <== map { $_ * 2 },0 <== 1...10' (0 20) So this really looks like an insidious case of accidental one-arg semantics.