Skip to content

Commit

Permalink
A small fix to config.g: Now accept empty values
Browse files Browse the repository at this point in the history
  • Loading branch information
erezsh committed Feb 6, 2015
1 parent 57614ff commit 92eeb91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plyplus/grammars/config.g
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ OPTION: '[^=:\n;]+[=:][^\n]*'
name: '[^=:\n;]+';
VALUE: '[:=][^\n;]*'
{
start: '[:=]' value;
start: '[:=]' value?;
value: '[^:=\n;][^\n;]*';
};
WS: '[\t \f]+' (%ignore);
Expand Down

0 comments on commit 92eeb91

Please sign in to comment.