Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Allow multiple unspaces in sequence
  • Loading branch information
Mouq committed Aug 26, 2013
1 parent 06636e4 commit d699c5f
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 d699c5f

Please sign in to comment.