Skip to content

Commit

Permalink
Fix error reporting inside the setting
Browse files Browse the repository at this point in the history
without thsi patch, at least r-m always printed the last key for all elements
  • Loading branch information
moritz committed Nov 24, 2014
1 parent c238291 commit bf6f157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/World.nqp
Expand Up @@ -2861,7 +2861,7 @@ class Perl6::World is HLL::World {
my @err := ['Error while compiling, type ', join('::', $ex_type), "\n"];
for %opts -> $key {
@err.push: ' ';
@err.push: $key;
@err.push: ~$key;
@err.push: ': ';
@err.push: safely_stringify(%opts{$key});
@err.push: "\n";
Expand Down

0 comments on commit bf6f157

Please sign in to comment.