X-Git-Url: http://git.vpit.fr/?p=perl%2Fscripts%2Fxchat.git;a=blobdiff_plain;f=Xchat%2FXPI.pm;fp=Xchat%2FXPI.pm;h=1d9236454c1ef9d715d77a50c30ce55654b5aee0;hp=ff98ec762b9150f59e1ed50a680eded1469113d5;hb=73947ac5d6fffbe5b5ad7f86a9d57d5ada557e6b;hpb=bc7fad34cd01ea436368b5e099cede0aa17abab6 diff --git a/Xchat/XPI.pm b/Xchat/XPI.pm index ff98ec7..1d92364 100644 --- a/Xchat/XPI.pm +++ b/Xchat/XPI.pm @@ -23,7 +23,8 @@ sub new { $class = ref($class) || $class; my %opts = @_; - my $caller = (caller 0)[0]; + my ($caller, $file) = (caller 0)[0, 1]; + unless (defined $opts{tag}) { $opts{tag} = ($caller =~ /([^:]*):*$/) ? $1 : 'UNKNOWN'; } @@ -52,6 +53,10 @@ sub new { *$ph->{$_} = $opts{$_} for @attributes; *$ph->{buf} = ''; + my $internal_pkg = Xchat::Embed::file2pkg($file); + no warnings 'redefine'; + local *Xchat::Embed::find_pkg = sub { $internal_pkg, $caller }; + local *HexChat::Embed::find_pkg = sub { $internal_pkg, $caller }; Xchat::register(@opts{qw}, sub { $ph->flush; if (*$ph->{atexit_id}) {