Re: [perl #24267] Inconsistent behaviour of logical or op

2003-10-23 Thread Leopold Toetsch
Simon Glover [EMAIL PROTECTED] wrote: I don't think your fix is correct, since: Yep, you are right, sorry. Having done some more nosing around, I see that PerlString doesn't actually have its own implementation of logical_or; instead, it falls back on the scalar.pmc version, which does:

[perl #24267] Inconsistent behaviour of logical or op

2003-10-22 Thread via RT
# New Ticket Created by Simon Glover # Please include the string: [perl #24267] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt2/Ticket/Display.html?id=24267 This code: set I0, 10 set I1, 20 or I2, I1, I0

Re: [perl #24267] Inconsistent behaviour of logical or op

2003-10-22 Thread Leopold Toetsch
Simon Glover [EMAIL PROTECTED] wrote: Clearly there's a bug here, since the behaviour should be consistent; I have changed the PerlInts to work like all others, thanks Simon leo

Re: [perl #24267] Inconsistent behaviour of logical or op

2003-10-22 Thread Simon Glover
On Wed, 22 Oct 2003, Leopold Toetsch wrote: Simon Glover [EMAIL PROTECTED] wrote: Clearly there's a bug here, since the behaviour should be consistent; I have changed the PerlInts to work like all others, thanks I don't think your fix is correct, since: new P0, .PerlNum