Skip to content

Commit

Permalink
fix LTA unrec regex meta reported by moritz++
Browse files Browse the repository at this point in the history
  • Loading branch information
TimToady committed May 12, 2011
1 parent 01c24ce commit b9c20c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion STD.pm6
Expand Up @@ -4779,7 +4779,7 @@ grammar Regex is STD {
}
}
|| $$ <.panic: "Regex not terminated">
|| \W <.sorry: "Unrecognized regex metacharacter (must be quoted to match literally)">
|| (\W) <.sorry: "Unrecognized regex metacharacter " ~ $0.Str ~ " (must be quoted to match literally)">
|| <.panic: "Regex not terminated">
]
]
Expand Down

0 comments on commit b9c20c5

Please sign in to comment.