diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2020-09-10 12:02:38 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2020-09-10 12:02:38 -0700 |
| commit | becd3e07d7173171ca78a281edfc4cdf503daf8f (patch) | |
| tree | e3d5611075893596b55b8e7771b7fba22a4ddf63 | |
| parent | af60c05236704b231c1974ae90214cfe1efad38e (diff) | |
Fixed semicolon rule
| -rw-r--r-- | bpeg.bpeg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ # This is a file defining the BPEG grammar using BPEG syntax grammar; -grammar = __ @[main-pattern]extended-pat __ (*def % (__`;__)) ?(`;__); +grammar = __ @[main-pattern]extended-pat __ *((__`;__) def) ?(`;__); def = @[name]ref __ `= __ @[definition]extended-pat; # This is used for command line arguments: |
