Skip to content

Commit

Permalink
Allow user-defined single-letter gracings.
Browse files Browse the repository at this point in the history
Previously just allowed T.
  • Loading branch information
colomon committed Feb 12, 2017
1 parent 392625e commit 2778fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ABC/Grammar.pm
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ grammar ABC::Grammar

token long_gracing_text { [<alpha> | '.' | ')' | '(']+ }
token long_gracing { '+' <long_gracing_text> '+' }
token gracing { '.' | '~' | 'T' | <long_gracing> }
token gracing { '.' | '~' | <[ H .. Y ]> | <[ h .. w ]> | <long_gracing> }

token spacing { \h+ }

Expand Down

0 comments on commit 2778fb3

Please sign in to comment.