Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #5 from perl6/multiunsp
Allow multiple unspaces in sequence
  • Loading branch information
TimToady committed Aug 28, 2013
2 parents 06636e4 + d699c5f commit 83f92a5
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions STD.pm6
Expand Up @@ -637,13 +637,15 @@ token ws {
}

token unsp {
\\ <?before [\s|'#'] >
:dba('unspace')
[
| <.vws>
| <.unv>
| $ {.moreinput }
]*
\\ <?before [\s|'#'] >
:dba('unspace')
[
| <.vws>
| <.unv>
| $ {.moreinput }
]*
]+
}

token vws {
Expand Down

0 comments on commit 83f92a5

Please sign in to comment.