-----BEGIN PGP SIGNED MESSAGE----- Moin,
as the subject says, this one handles charnames.pm. (That file looks like it could use someother optimizations, too. Like inlining _getcode() etc). If I should send these patches in differently, don't hesitate to tell me. Best wishes, Tels - -- Signed on Sun Jun 26 20:45:21 2005 with key 0x93B84C15. Visit my photo gallery at http://bloodgate.com/photos/ PGP key on http://bloodgate.com/tels.asc or per email. "Eat, eat, eat, eat the delicious sandwich!" -- Elan the Bard (Order of the Stick) -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) iQEVAwUBQr74UHcLPEOTuEwVAQF13gf9HP6szPuwf1QnOoi7TjEkJLgEyHysvRcA sbQVaSu+djuYuNlCgBGgJLLRnXr7okm/tc8154Kwms9xZ8OdAvbGugzBr8g275N+ MhL+QiQJUq92PIfhivK6I7Zl3MifiL005+VSgyoDFgTgXURgYcnsLT88FbqVZlWD BoraShTsZUgBN6y3NFjAB3fwN57Y8ADLNTBOb0f8+kJVD4n+5WD+RhEaBSPzfm4k 45vg4JHszNAfnzos+dtCsoWG2KToo+Vm6rWLERMQMyNGnN0Hbdq81g8j/zeKZqaz GCHm2FQ1okB22CL8omzkW+UhAFbvaJeLgBb8WKwdUhjo9tV3EQUahQ== =lh8O -----END PGP SIGNATURE-----
diff -ruN blead.patch.6/lib/charnames.pm blead.patch.7/lib/charnames.pm --- blead.patch.6/lib/charnames.pm 2004-07-01 12:37:39.000000000 +0200 +++ blead.patch.7/lib/charnames.pm 2005-06-26 20:24:44.000000000 +0200 @@ -1,9 +1,8 @@ package charnames; use strict; use warnings; -use Carp; use File::Spec; -our $VERSION = '1.04'; +our $VERSION = '1.04_1'; use bytes (); # for $bytes::hint_bits $charnames::hint_bits = 0x20000; # HINT_LOCALIZE_HH @@ -44,6 +43,16 @@ ); my $txt; +sub croak +{ + require Carp; goto &Carp::croak; +} # croak + +sub carp +{ + require Carp; goto &Carp::carp; +} # carp + sub alias (@) { @_ or return %alias3;