Skip to content
This repository has been archived by the owner on Sep 24, 2019. It is now read-only.

Commit

Permalink
match more printable characters in FUNCTION
Browse files Browse the repository at this point in the history
Excluded open paren, (, due to ambiguity with term.

Excluded single and double quote due to ragel machine compilation
hanging.

Excluded space due to leading indentation feature (refs #36).

refs #64
  • Loading branch information
Anthony Bargnesi committed May 17, 2016
1 parent cb0ac1d commit 31fd6e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bel_parser/parsers/common/common.rl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ machine bel;
;

FUNCTION =
[a-zA-Z0-9_]+
(print - (' ' | "'" | '"' | '('))+
;
}%%
=end
Expand Down

0 comments on commit 31fd6e2

Please sign in to comment.