Codebase list libbareword-filehandles-perl / 957063d
Add comment explaining why $^H |= 0x20000 is necessary Dagfinn Ilmari Mannsåker 4 years ago
1 changed file(s) with 4 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
4040
4141 =cut
4242
43 sub unimport { $^H |= 0x20000; $^H{__PACKAGE__.'/disabled'} = 1 }
43 sub unimport {
44 $^H |= 0x20000; # HINT_LOCALIZE_HH, to make %^H lexical on 5.8
45 $^H{__PACKAGE__.'/disabled'} = 1;
46 }
4447
4548 =method import
4649