jimregan / foma

Automatically exported from code.google.com/p/foma
0 stars 0 forks source link

Rule named E_to_ee causes segmentation error. #3

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
define Etoee e -> é || _ "^" [ \0 ] ;
...
define Grammar Lexicon           .o. 
               HarmRule          .o. 
               E_to_ee             .o. 
               Cleanup;

Causes a segmentation error.
Changing name E_to_ee to Etoee solves the problem.

Would not an error message be more elegant, it the name is not liked?

Original issue reported on code.google.com by eleonor...@gmx.net on 28 Dec 2011 at 11:32

GoogleCodeExporter commented 8 years ago
define E_to_ee e -> é || _ "^" [ \0 ] ;
(correction)

Original comment by eleonor...@gmx.net on 28 Dec 2011 at 12:03