sub foo { ... while (<$fh>) { # XXX Changes $_ ... } ... } #### sub foo { ... local $_; while (<$fh>) { ... } ... }