Skip to content

Commit

Permalink
Fix for issue #84
Browse files Browse the repository at this point in the history
  • Loading branch information
knsv committed Jan 3, 2015
1 parent c10b455 commit c7e2c2b
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 25 deletions.
4 changes: 1 addition & 3 deletions src/diagrams/flowchart/parser/flow.jison
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
\+ return 'PLUS';
\% return 'PCT';
\= return 'EQUALS';
[\u0021-\u0027\u002A-\u002E\u003F\u0041-\u005A\u005C\u0061-\u007A\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|
[\u0021-\u0027\u002A-\u002E\u003F\u0041-\u005A\u005C\u005F-\u007A\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|
[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|
[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|
[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|
Expand Down Expand Up @@ -240,8 +240,6 @@ link: linkStatement arrowText
{$5.text = $3;$$ = $5;}
| '--' SPACE text SPACE linkStatement SPACE
{$5.text = $3;$$ = $5;}
| '--' text linkStatement SPACE
{$5.text = $3;$$ = $5;}
;

linkStatement: ARROW_POINT
Expand Down
Loading

0 comments on commit c7e2c2b

Please sign in to comment.