Skip to content

Commit

Permalink
Merge branch 'master' of git@github.com:rakudo/rakudo
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Mar 17, 2009
2 parents 042444b + 84920ea commit 5af6f41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/ChangeLog
@@ -1,8 +1,10 @@
New since 2009-02 release

+ implemented $*PROGRAM_NAME magical variable
+ outer lexicals are now visible in eval()
+ next, last etc. work in grep()
+ added R metaoperator.
+ add a initial draft of Match.perl
+ add an initial draft of Match.perl
+ refactor Grammar and Match class hierarchy
+ fix if/unless/while/until/for/... on line after close curlies
+ add Q quoting, including Q:PIR
Expand Down
2 changes: 1 addition & 1 deletion src/setting/Match.pm
Expand Up @@ -32,7 +32,7 @@ class Match is also {
take $sp;
take "named => \{\n";
for %(self).kv -> $name, $match {
take "$sp $name => ";
take "$sp '$name' => ";
# XXX why is this a Str, not a Match?
if $match ~~ Match {
take $match!_perl($indent + 3);
Expand Down

0 comments on commit 5af6f41

Please sign in to comment.