Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
allow more hexints in \x{}
  • Loading branch information
FROGGS committed Jan 16, 2014
1 parent 8688e89 commit 1595bd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QRegex/P5Regex/Grammar.nqp
Expand Up @@ -140,7 +140,7 @@ grammar QRegex::P5Regex::Grammar is HLL::Grammar {
<sym>
[
| $<hexint>=[ <[ 0..9 a..f A..F ]>**0..2 ]
| '{' ~ '}' $<hexint>=[ <[ 0..9 a..f A..F ]>**0..2 ]
| '{' ~ '}' $<hexint>=[ <[ 0..9 a..f A..F ]>* ]
]
}
token p5backslash:sym<z> { <sym> }
Expand Down

0 comments on commit 1595bd4

Please sign in to comment.