Skip to content

Commit

Permalink
fix think in exporter
Browse files Browse the repository at this point in the history
previously some exports would go into the wrong tag
  • Loading branch information
moritz committed Jun 10, 2012
1 parent fb7d00a commit eef772d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/traits.pm
Expand Up @@ -87,7 +87,7 @@ sub EXPORT_SYMBOL(\$exp_name, @tags, Mu \$sym) {
for @tags -> $tag { for @tags -> $tag {
my $install_in; my $install_in;
if $p.WHO.exists($tag) { if $p.WHO.exists($tag) {
$install_in := $*EXPORT.WHO.{$tag}; $install_in := $p.WHO.{$tag};
} }
else { else {
$install_in := $*W.pkg_create_mo($/, (package { }).HOW, :name($tag)); $install_in := $*W.pkg_create_mo($/, (package { }).HOW, :name($tag));
Expand Down

0 comments on commit eef772d

Please sign in to comment.