Removed unused disjunct in SourceContents. [jgm/peg-markdown]

See https://github.com/jgm/peg-markdown/commit/2a19a38
This commit is contained in:
Michael Teichgräber 2013-01-23 22:36:47 +01:00
parent e5cc35f577
commit 3d0dcc5c4b
2 changed files with 1 additions and 2 deletions

View File

@ -610,7 +610,6 @@ Source = ( '<' < SourceContents > '>' | < SourceContents > )
{ $$ = p.mkString(yytext) } { $$ = p.mkString(yytext) }
SourceContents = ( ( !'(' !')' !'>' Nonspacechar )+ | '(' SourceContents ')')* SourceContents = ( ( !'(' !')' !'>' Nonspacechar )+ | '(' SourceContents ')')*
| ""
Title = ( TitleSingle | TitleDouble | < "" > ) Title = ( TitleSingle | TitleDouble | < "" > )
{ $$ = p.mkString(yytext) } { $$ = p.mkString(yytext) }

2
portid
View File

@ -1 +1 @@
196 197