Change 16353: "fix" for utf8_heavy.pl, lexical UTF8 var crashed
[email protected] (Chris Nandor) Thu, 2 May 2002 17:01:41 -0400
| Newsgroups | perl.perl5.changes.mac |
|---|---|
| Message-ID | <p0510030db8f759a68dd3@[10.0.1.177]> |
Change 16353 by pudge@pudge-mobile on 2002/05/02 19:55:39
"fix" for utf8_heavy.pl, lexical UTF8 var crashed
in test 92 of run/fresh_perl.t on MacOS
Affected files ...
.... //depot/macperl/lib/utf8_heavy.pl#2 edit
Differences ...
==== //depot/macperl/lib/utf8_heavy.pl#2 (text) ====
Index: perl/lib/utf8_heavy.pl
--- perl/lib/utf8_heavy.pl.~1~ Thu May 2 14:00:05 2002
+++ perl/lib/utf8_heavy.pl Thu May 2 14:00:05 2002
@@ -6,10 +6,10 @@
sub DESTROY {}
+my %Cache;
+
sub croak { require Carp; Carp::croak(@_) }
-my %Cache;
-
##
## "SWASH" == "SWATCH HASH". A "swatch" is a swatch of the Unicode landscape
##
End of Patch.