From 656170d3727b0ac51cb3eeb0fb699d751388bbba Mon Sep 17 00:00:00 2001 From: Moritz Lenz Date: Wed, 11 Aug 2010 14:57:47 +0200 Subject: [PATCH] disable non-working modifiders on m// for now --- src/Perl6/Actions.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Perl6/Actions.pm b/src/Perl6/Actions.pm index 9bbf0443fc5..484a5288606 100644 --- a/src/Perl6/Actions.pm +++ b/src/Perl6/Actions.pm @@ -2675,7 +2675,8 @@ INIT { %SUBST_ALLOWED_ADVERBS{$_} := 1; } - $mods := 'g global x c continue p pos nth th st nd rd ov overlap'; + # TODO: add g global ov overlap once they actually work + $mods := 'x c continue p pos nth th st nd rd'; for pir::split__PSS(' ', $mods) { %MATCH_ALLOWED_ADVERBS{$_} := 1; }