[comp.lang.perl] Shuffling, and more grep nut

lwall@jpl-devvax.JPL.NASA.GOV (Larry Wall) (02/06/90)

In article <1990Jan30.193431.28383@iwarp.intel.com> merlyn@iwarp.intel.com (Randal Schwartz) writes:
: grep(s/foo/bar/, @TMP = @sacred);
: 
: But when I just tried it, it still affected @sacred!  Why?

Bug in array assignment.  It was leaving the wrong set of pointers
on the stack.  Fixed.

Larry