Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^2: search position is getting reset after 'local'

by dave_the_m (Monsignor)
on Jun 12, 2006 at 12:51 UTC ( [id://554796]=note: print w/replies, xml ) Need Help??


in reply to Re: search position is getting reset after 'local'
in thread search position is getting reset after 'local'

No, local is more close to this:
{ $orig_value = \$x; *x = \$tmp_new_value; ....; *x = $orig_value; }

and the OP has reported a genuine bug

Dave.

Replies are listed 'Best First'.
Re^3: search position is getting reset after 'local'
by Joost (Canon) on Jun 12, 2006 at 13:10 UTC
      I'm wondering what's wrong with local() then, since your equivalent does work as you would expect local to act
      It's to do with how magic attached to the value (eg pos magic) is sometimes copied to the new value, and sometimes copied back at the end. For example, a localised %ENV still needs to affect environment variables.

      It's on my Big List of Things To Fix At Some Point.

      Dave.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://554796]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (4)
As of 2024-04-23 05:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found