Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
use nqp::p6recont_ro in &take
  • Loading branch information
moritz committed Dec 8, 2011
1 parent 2453985 commit 8c38b99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/ChangeLog
Expand Up @@ -21,6 +21,7 @@ New in 2011.12
+ implemented .WALK
+ implemented ff, ^ff, ff^ and ^ff^
+ implemented .REPR macro
+ implemented case insensitive regex matches

New in 2011.11
+ CATCH blocks are now much closer to spec
Expand Down
2 changes: 1 addition & 1 deletion src/core/control.pm
Expand Up @@ -58,7 +58,7 @@ my &take := -> |$ {
&RETURN-PARCEL(nqp::p6parcel(pir::perl6_current_args_rpa__PP(), Nil));
# XXX Should be nqp::p6recont_ro, but it's currently masking a bug
# where [...] doesn't decontainerize enough.
THROW(nqp::p6decont($parcel),
THROW(nqp::p6recont_ro($parcel),
pir::const::CONTROL_TAKE)
};

Expand Down

0 comments on commit 8c38b99

Please sign in to comment.